Expand description

This is a Rust port of the Roaring bitmap data structure, initially defined as a Java library and described in Better bitmap performance with Roaring bitmaps.

Re-exports

pub use bitmap::RoaringBitmap;
pub use treemap::RoaringTreemap;

Modules

A compressed bitmap using the Roaring bitmap compression scheme.

A compressed bitmap with u64 values. Implemented as a BTreeMap of RoaringBitmaps.

Structs

An error type that is returned when an iterator isn’t sorted.

Traits

A Iterator::collect blanket implementation that provides extra methods for RoaringBitmap and RoaringTreemap.