bitpack-vec

Rust

A dense bitpacked vector type for unnsigned integers.

```rust use bitpack_vec::BitpackVec; let mut bv = BitpackVec::new(5); // 5-bit integers

for i in 0..12 { bv.push(i); }

asserteq!(bv.at(6), 6); asserteq!(bv.at(9), 9);

use deepsize::DeepSizeOf; asserteq!(bv.asraw().len(), 1); // underlying vector length is just 1 (60 bits)

// total in-memory size (not strictly specified by Rust): asserteq!( bv.deepsizeof(), std::mem::sizeof::>() // size of the vector structure + std::mem::sizeof::() // the length counter (separate from the Vec's) + std::mem::sizeof::() // the bitwidth of the structure + 15 // padding ); ```

This package does an "as you'd expect" bitpacking of integers, with no fancy SIMD or additional compression. Values are stored in a Vec<u64>, so no more than 63 bits should be wasted. Values can overlap u64 values.

Compared to other bitpacking packages for Rust:

License

This code is available under the terms of the GPL-3.0 (or later) license.