1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![deny(missing_docs)]
//! Rust wrapper for `CRoaring` (a C/C++ implementation at <https://github.com/RoaringBitmap/CRoaring>)
//!
//! Provides Compressed Bitmaps, which act like a set of integers in an efficient way.

pub mod bitmap;
pub mod bitset;
pub mod treemap;

mod serialization;

pub use serialization::*;

pub use bitmap::Bitmap;
pub use bitset::Bitset;
pub use treemap::Treemap;

pub use bitmap::BitmapView;