//! bloomz: a fast, flexible bloom filter for rust
extern crate std;
/// A bitset implementation for the bloom filter.
/// Mathematical functions for calculating optimal bloom filter parameters.
/// Hashing functions for the bloom filter.
/// The bloom filter implementation.
pub use BloomFilter;