1 2 3 4 5 6 7 8 9 10
//! Core traits for the [`arithmetic-coding-adder-dep`](https://github.com/danieleades/arithmetic-coding) crate #![deny(missing_docs, clippy::all, missing_debug_implementations)] #![warn(clippy::pedantic)] mod bitstore; pub use bitstore::BitStore; mod model; pub use model::{fixed_length, max_length, one_shot, Model};