arithmetic-coding-core 0.4.2

core traits for the 'arithmetic-coding' crate
Documentation
1
2
3
4
5
6
7
8
9
//! Core traits for the [`arithmetic-coding`](https://github.com/danieleades/arithmetic-coding) crate

#![deny(missing_docs, missing_debug_implementations)]

mod bitstore;
pub use bitstore::BitStore;

mod model;
pub use model::{Model, fixed_length, max_length, one_shot};