bit_field

Crates.iobit_field
lib.rsbit_field
version0.10.2
sourcesrc
created_at2016-05-24 20:21:58.392931
updated_at2023-02-25 12:00:35.039244
descriptionSimple bit field trait providing get_bit, get_bits, set_bit, and set_bits methods for Rust's integral types.
homepage
repositoryhttps://github.com/phil-opp/rust-bit-field
max_upload_size
id5176
size47,491
Philipp Oppermann (phil-opp)

documentation

https://docs.rs/bit_field

README

bit_field

A simple crate which provides the BitField trait, which provides methods for operating on individual bits and ranges of bits on Rust's integral types.

Documentation

Documentation is available on docs.rs

Usage

[dependencies]
bit_field = "0.10.1"

Example

extern crate bit_field;
use bit_field::BitField;

let mut x: u8 = 0;

x.set_bit(7, true);
assert_eq!(x, 0b1000_0000);

x.set_bits(0..4, 0b1001);
assert_eq!(x, 0b1000_1001);

License

This crate is dual-licensed under MIT or the Apache License (Version 2.0). See LICENSE-APACHE and LICENSE-MIT for details.

Commit count: 87

cargo fmt