Skip to content

Bitfield that allocates a series of small buffers.

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT
Notifications You must be signed in to change notification settings

datrs/sparse-bitfield

sparse-bitfield

crates.io version build status downloads docs.rs docs

Bitfield that allocates a series of small buffers. Adapted from mafintosh/sparse-bitfield.

Usage

extern crate sparse_bitfield;

use sparse_bitfield::Bitfield;

let mut bits = Bitfield::new(1024);
bits.set(0, true);          // set first bit
bits.set(1, true);          // set second bit
bits.set(1_000_000, true);  // set the millionth bit
assert!(bits.get(1));

Installation

$ cargo add sparse-bitfield

License

MIT OR Apache-2.0

About

Bitfield that allocates a series of small buffers.

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages