ruzstd/huff0/mod.rs
1/// Huffman coding is a method of encoding where symbols are assigned a code,
2/// and more commonly used symbols get shorter codes, and less commonly
3/// used symbols get longer codes. Codes are prefix free, meaning no two codes
4/// will start with the same sequence of bits.
5mod huff0_decoder;
6pub use huff0_decoder::*;