libecc 0.2.2

Library of Error-Correcting Codes for GD
Documentation
1
2
3
4
5
6
7
8
use bitvec::prelude::*;

pub type IdRep = BitVec<u8, Msb0>;
pub type IdSRep = BitSlice<u8, Msb0>;
pub type BVRep = BitVec<u8, Msb0>;
pub type BSRep = BitSlice<u8, Msb0>;
pub type U8VRep = Vec<u8>;
pub type U8SRep = [u8];