Portable Bitwise Manipulation Intrinsics

Travis build status Coveralls.io code coverage Docs License

0b0000_0010_1001_1010 (nightly-only)

The intrinsics are named after their CPU instruction and organized in modules named after their instruction set: bitintr::{instruction_set}::{intrinsic_name}.

They are implemented for all integer types except u128/i128. Whether a fallback software implementation is used depends on the integer types involved and the instruction sets supported by the target.

The following instruction sets are implemented:

Example

```rust extern crate bitintr; use bitintr::bmi2::*;

fn main() { let x = 1; let y = 0; // Intrinsics can be used as methods: let methodcall = x.pdep(y); // And as free function calls: let freecall = pdep(x, y); asserteq!(methodcall, free_call); } ```

Nightly-only

This crate relies on the following nightly features:

For more information, visit the documentation page.