A C++20 utility for compressing string literals at compile-time to save program space. The compressed data can be decompressed at run-time through the use of a decoder that follows `std::forward_iterator`.
Compression is achieved using [Huffman coding](https://en.wikipedia.org/wiki/Huffman_coding), which works by creating short codes (measured in bits) for frequently-occuring characters. This works best on larger pieces of data that are limited in their range of values (e.g. written text).
## Requirements
A C++20 compliant compiler. `consteval-huffman` is confirmed to work on gcc 10.1 and later, doesn't work yet on clang.
Use `data.begin()` or `data.cbegin()` to get an iterator for the data which decompresses the next byte with every increment.
These of course come with `end()` and `cend()`.
Use `data()` to get a pointer to the *compressed* data.
Use `size()` to get the size of the compressed data.
Should compression not decrease the size of the given data, the data will be stored uncompressed. The above functions will still behave as they should.