broomfilter 0.1.4

A bloom filter that sweeps away your certainty. Probably.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod blocked;
mod error;
mod filter;
mod hash;

pub use blocked::BlockedFilter;
pub use error::Error;
pub use filter::Filter;

#[cfg(feature = "benchmarks")]
pub fn hash_bytes(value: &[u8]) -> (u64, u64) {
    hash::hash(value)
}