bitsets

Crates.iobitsets
lib.rsbitsets
version0.1.1
sourcesrc
created_at2018-06-10 23:24:00.183351
updated_at2018-10-20 14:27:06.408754
descriptionBitSet implementations: Dense, Compressed, Memory-Mapped, and Roaring.
homepagehttps://github.com/Zintinio/bitsets
repositoryhttps://github.com/Zintinio/bitsets
max_upload_size
id69539
size14,267
Arthur Maciejewicz (Zintinio)

documentation

https://docs.rs/bitsets

README

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);
Commit count: 0

cargo fmt