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(
4 missing_docs,
5 clippy::all,
6 missing_debug_implementations,
7 clippy::cargo
8)]
9#![warn(clippy::pedantic)]
10#![feature(associated_type_defaults)]
11
12mod bitstore;
13pub use bitstore::BitStore;
14
15mod model;
16pub use model::{fixed_length, max_length, one_shot, Model};