# Functions
AutoDecompress takes a stream and returns an uncompressed version of the same stream.
Bzip2Decompressor is a DecompressorFunc for the bzip2 compression algorithm.
DetectCompression returns a DecompressorFunc if the input is recognized as a compressed format, nil otherwise.
GzipDecompressor is a DecompressorFunc for the gzip compression algorithm.
XzDecompressor is a DecompressorFunc for the xz compression algorithm.
# Type aliases
DecompressorFunc returns the decompressed stream, given a compressed stream.