//! SILK-specific range-coder helpers.
//!
//! SILK shares the exact same arithmetic coder as CELT (RFC 6716 §4.1)
//! — we re-export [`RangeDecoder`] from the CELT crate and add a few
//! small adapters to match the naming conventions in RFC §4.2.
//!
//! Only thin wrappers here so that the rest of the SILK module reads
//! like the RFC pseudocode.
pub use RangeDecoder;
/// Decode an ICDF symbol from a table with `ft = 256`.
/// Decode a uniform integer in [0, n).
/// Decode a single binary symbol with 50% probability.