tiny-bitstream 0.1.0

Standard implementation of a classic bitstream library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod bitstream;
pub use bitstream::*;
pub mod constants;
pub mod errors;

#[cfg(test)]
mod tests;

macro_rules! debug_test {
    ($($arg:tt)*) => {{
        //#[cfg(test)]
        //println!($($arg)*);
    }};
}
pub(crate) use debug_test;