bitsets 0.1.1

BitSet implementations: Dense, Compressed, Memory-Mapped, and Roaring.
Documentation
  • Coverage
  • 83.33%
    15 out of 18 items documented7 out of 18 items with examples
  • Size
  • Source code size: 13.89 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.66 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 9s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • Zintinio

bitsets

Various heap-allocated bitset implementations in Rust.

At the moment we provide a DenseBitSet datastructure, and plan to provide compressed and memory-mapped bitsets in the near future.

Usage

use bitsets::DenseBitSet;

let A = DenseBitSet::from_bits(0b1001100000100010);
let B = DenseBitSet::from_bits(0b1001100000100010);
let C = A.or(&B);