bit 0.1.1

A library which provides helpers to manipulate bits and bit ranges.
Documentation
  • Coverage
  • 100%
    7 out of 7 items documented0 out of 6 items with examples
  • Size
  • Source code size: 18.66 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 720.94 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • jmi2k

Bit

crates.io version badge

bit is a library which provides some useful helpers for dealing with bits and bit ranges. For now it's just a rewrite of rust-bit-field crate, but more features are planned. Some of them could be:

  • Support for arrays and slices.
  • bitflags-like functionality.

Usage

Add to your Cargo.toml:

[dependencies]
bit = "0.1"

And add to your code:

extern crate bit;
use bit::BitIndex;

Example

extern crate bit;
use bit::BitIndex;

fn main() {
    let mut value = 0b11010110u8;

    // 8
    println!("{}", u8::bit_length());

    // true
    println!("{}", value.bit(1));

    // 0b10
    println!("{:#b}", value.bit_range(0..2));

    value
        .set_bit(3, true)
        .set_bit(2, false)
        .set_bit_range(5..8, 0b001);

    // 0b111010
    println!("{:#b}", value);
}