arithmetic_coding_core/
lib.rs

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::{fixed_length, max_length, one_shot, Model};