//! Bloom filter usage.
//!
//! Bloom filter is a probabilistic data structure that is used to check
//! whether the element definitely is not in set or may be in the set.
//!
//! Instead of a traditional hash-based set, that takes up too much memory,
//! this structure permits less memory with a tolerable false positive rate.
//!
//! This library does not provide explicit bloom filter reimplementation.
//! You can use specialized [`bloomfilter`](https://docs.rs/bloomfilter/latest/bloomfilter/)
//! crate instead.
use Bloom;