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. |
5 | mod huff0_decoder; |
6 | pub use huff0_decoder::*; |
7 |