Skip to content

swiftstack/dcompression

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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]
}