safebit 0.1.0

Safe and secure bit access into integer types
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![doc = include_str!("../README.md")]
#![no_std]
#![forbid(unsafe_code)]
#[cfg(feature = "std")]
extern crate std;
pub mod bitstream;
//pub mod bitview;
pub mod error;
#[cfg(feature = "std")]
mod error_std;
pub mod util;
pub mod word;
pub mod word_read;
#[cfg(feature = "std")]
mod word_read_std;