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