1 2 3 4 5 6 7 8 9 10 11 12
#![deny(missing_docs)] //! contains [`Bitmap`] and [`MutableBitmap`], containers of `bool`. mod immutable; pub use immutable::*; mod mutable; pub use mutable::MutableBitmap; mod bitmap_ops; pub use bitmap_ops::*; pub mod utils;