Defined in File BloomFilter.hpp
Bloom filter for fast set membership queries for type index with one-sided error (false positives). Uses one hash function instead of many but different random salts instead.
Public Functions
Constructor. Space complexity: numHashes * size bytes.
numHashes – [in] Number of different hash functions that should be used. Actually, the implementation uses numHashes different random salts instead and one hash function only.
size – [in] Size of each hash array.
Destructor.