//! Huffman coding module.
//!
//! This module contains Huffman table types, encoding, and optimization:
//! - `encode`: Huffman encoding functions and tables
//! - `classic`: Optimal Huffman table generation (mozjpeg-style algorithms)
//! - `types`: Additional Huffman types and comparisons
//! - `optimize`: Two-pass Huffman optimization with frequency counting and clustering
//! - `trained`: Pre-trained Huffman tables for streaming encoding
pub
// Re-export commonly used items from encode (the main huffman.rs functionality)
pub use ;
// Decoder-only exports
pub use HuffmanDecodeTable;
// Re-export from classic
// Re-export from types
// Re-export from optimize (new types from huffman_opt.rs refactor)