# Functions
New creates a new LZ4 Encoder that can be used to compress/decompress data.
WithCompressionLevel allows the level to be set to something other than the default 512.
# Constants
MaxCompressionLevel denotes the maximum useful compression level.
# Variables
ErrBufferSizeMismatch denotes that the allocated buffer is insufficient in size.
ErrIncorrectNumBytesRead denotes that the number of bytes read during decompression does not match the expected size.
# Structs
Encoder compresses data with the LZ4 algorithm (omitting certain bounds-checks for performance reasons).
# Type aliases
Option sets additional parameters on the Encoder.