lazy-bytes-cast 7.1.0

Lazy casts from & to byte arrays
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//!Lazy utilities to work with bits and bytes.

#![warn(missing_docs)]
#![allow(clippy::style)]
#![no_std]

mod bits;
pub use bits::Bits;
mod convert;
pub use convert::*;
mod read;
pub use read::*;