create
Create a BloomFilter sized for expectedElements at the given falsePositiveRate (default 1%). The optimal bit count and hash count are derived from the standard formulas:
m = -n * ln(p) / (ln 2)²
k = (m / n) * ln 2Content copied to clipboard
where n = expectedElements and p = falsePositiveRate.