//! `mmap-bitvec` is a library for using file-backed (via mmap) bit vectors and
//! includes common convenience functions and a few data structures built atop
//! the included bit vector implementation.
/// The `bitvec` trait and some impl for built-in types
/// A simple implementation of a Bloom filter backed by `BitVec`
/// All the utilities to interact with a mmap'd bitvector
pub use crateMmapBitVec;
pub use BitVector;
pub use BloomFilter;