Crate croaring

source ·
Expand description

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.

Re-exports

Modules

Enums

  • The Frozen format imitates memory layout of the underlying C library.
  • The JvmLegacy format is meant to be compatible with the original Java implementation of Roaring64NavigableMap
  • The Native format format can sometimes be more space efficient than Portable,
  • The Portable format is meant to be compatible with other roaring bitmap libraries, such as Go or Java.