Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
bloom_filter.hpp
✓ #include <bloom_filter.hpp>
Create a Bloom filter and test membership
#include "bloom_filter.hpp"
#include <iostream>
int main() {
bloom_filter filter(1000, 0.01);
filter.insert("hello");
if (filter.contains("hello")) {
std::cout << "Probably contains 'hello'" << std::endl;
}
return 0;
}
Debug
Known issues
No known issues recorded.
Audit
Dependencies
No dependency data recorded yet.
Resources
No resource links recorded.