Function decompress [src]
Prototype
pub fn decompress(allocator: Allocator, reader: anytype) !Decompress(@TypeOf(reader))
Parameters
allocator: Allocator
Source
pub fn decompress(allocator: Allocator, reader: anytype) !Decompress(@TypeOf(reader)) {
return Decompress(@TypeOf(reader)).init(allocator, reader);
}