roaring 0.0.1

http://roaringbitmap.org for http://www.rust-lang.org
docs.rs failed to build roaring-0.0.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: roaring-0.10.3

RoaringBitmap Travis CI Build Status

This is not yet production ready.

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.

Example

let mut rr = roaring::RoaringBitmap::new();
for k in 4000..4255 {
  rr.set(k, true);
}
assert!(bitmap.get(4100))