bit_bool

Crates.iobit_bool
lib.rsbit_bool
version0.1.0
sourcesrc
created_at2022-01-25 16:46:34.60921
updated_at2022-01-25 16:46:34.60921
descriptionThis is a libray that makes a boolean that "takes" up 1 bit instead of 1 byte
homepage
repository
max_upload_size
id520934
size3,580
Lemon (LemonjamesD)

documentation

README

This is a libray that makes a boolean that "takes" up 1 bit instead of 1 byte.

Examples

use bit_bool::OneBitBool;
 
let b = OneBitBool::from(true);
 
assert_eq!(b.get_index(0), true);
Commit count: 0

cargo fmt