This crate includes broadword algorithms that treat a u64
as a parallel vector
of eight u8
s or i8
s, as well as population count and select algorithms.
It’s on crates.io, so you can add
toml
[dependencies]
broadword = "0.2.2"
to your Cargo.toml
and
rust
extern crate broadword;
to your crate root.