bitintr 0.1.13

Portable Bit Manipulation Intrinsics.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Bit Manipulation Instruction (BMI) Set 1.0: software fallback.

pub mod andn;
pub mod bextr;
pub mod blsi;
pub mod blsmsk;
pub mod blsr;
pub mod tzcnt;

pub use self::andn::*;
pub use self::bextr::*;
pub use self::blsi::*;
pub use self::blsmsk::*;
pub use self::blsr::*;
pub use self::tzcnt::*;