bits 0.0.4

x86 BMI-style bit manipulation routines
docs.rs failed to build bits-0.0.4
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.

bits.rs

x86 BMI-style bit manipulation routines

Synopsis

This library provides various bit manipulation routines not available in Rust std. Currently it is just a portable implementation of the x86 ABM, BMI 1/2, and TBM instruction sets but the API may expand in the future. The implementation will (eventually) take advantage of specialized hardware instructions available on the native platform.

Documentation

See the API documentation here.

Requirements

  1. Rust
  2. Cargo

You can install both with the following:

$ curl -s https://static.rust-lang.org/rustup.sh | sudo sh

See Installing Rust for further details.

Usage

$ cargo build       ## build library/binary
$ cargo run         ## run examples
$ cargo test        ## run tests