1#![deny(missing_docs)] 2//! Utilities for Exponential-Golomb coding. 3 4mod decoder; 5mod encoder; 6 7pub use self::{decoder::ExpGolombDecoder, encoder::ExpGolombEncoder};