Encode a string to bytes, optionally with Huffman coding. Currently implements identity encoding (no Huffman). $$\text{huffmanEncode} : \text{String} \to \text{ByteArray}$$
Equations
Instances For
Decode bytes to a string, optionally with Huffman decoding. Currently implements identity decoding (no Huffman). $$\text{huffmanDecode} : \text{ByteArray} \to \text{Option}(\text{String})$$