bit_bool 0.1.0

This is a libray that makes a boolean that "takes" up 1 bit instead of 1 byte
Documentation
1
2
3
4
5
6
7
8
9
10
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);
```