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