项目作者: tris-code

项目描述 :
GZip, Deflate
高级语言: Swift
项目地址: git://github.com/tris-code/compression.git
创建时间: 2019-04-05T00:15:39Z
项目社区:https://github.com/tris-code/compression

开源协议:The Unlicense

下载


Compression

Compression algorithms

Package.swift

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

Memo

  1. struct Inflate {
  2. static func decode<T: InputStream>(from stream: T) throws -> [UInt8]
  3. }
  4. struct GZip {
  5. static func decode<T: InputStream>(from stream: T) throws -> [UInt8]
  6. }