Function compressor [src]
Prototype
pub fn compressor(writer: anytype) !huffman.Compressor(@TypeOf(writer))
Source
pub fn compressor(writer: anytype) !huffman.Compressor(@TypeOf(writer)) {
return deflate.huffman.compressor(.raw, writer);
}