Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 355 Bytes

README.md

File metadata and controls

21 lines (15 loc) · 355 Bytes

Compression

Compression algorithms

Package.swift

.package(url: "https://github.com/swiftstack/dcompression.git", .branch("dev"))

Memo

struct Inflate {
    static func decode<T: InputStream>(from stream: T) throws -> [UInt8]
}

struct GZip {
    static func decode<T: InputStream>(from stream: T) throws -> [UInt8]
}