huff_coding 1.0.0

An implementation of the Huffman coding algorithm, enabling one to create a Huffman tree with any alphabet they choose.
Documentation
pub use super::{
    tree::{
        HuffTree,
        branch::HuffBranch,
        leaf::HuffLeaf,
        letter::{
            HuffLetter,
            HuffLetterAsBytes,
        },
    },
    weights::{
        Weights,
        build_weights_map,
        build_weights_map_with_hasher,
        byte_weights::ByteWeights,
    },
    comp::{
        CompressData,
        compress,
        compress_with_tree,
        decompress
    },
};