bitops

crates.io docs.rs

Miscellaneous bit operations for any Integer. See documentation here.

Getting started

Add to your project with

bash cargo add bitops

or directly editing your Cargo.toml

toml [dependencies] bitops = "0.1.0"

Example usage

```rust use bitops::BitOps;

let x = 0b101010110000_1100; // 0xab0c let flag = 0b1000;

assert!(flag.isflag()); assert!(flag.isbit_set(3));

assert!(x.isflagset(flag)); asserteq!(x.bitsas_int(8, 4), 0xb); ```

License

Licensed under either of

at your option.