bitintr 0.1.13

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

pub mod bzhi;
pub mod mulx;
pub mod pdep;
pub mod pext;

pub use self::bzhi::*;
pub use self::mulx::*;
pub use self::pdep::*;
pub use self::pext::*;