Class representing a Bloom Filter data structure.
Creates an instance of BloomFilter.
The size of the bit array.
The number of hash functions to use.
Adds an item to the Bloom Filter.
The item to add.
Checks if an item is possibly in the Bloom Filter.
The item to check.
True if the item is possibly in the filter, false if definitely not.
Class representing a Bloom Filter data structure.