Files
SWCompression/Sources/Common/DecompressionAlgorithm.swift
T
2023-02-07 15:31:45 +02:00

15 lines
375 B
Swift

// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
import Foundation
/// A type that provides an implementation of a particular decompression algorithm.
public protocol DecompressionAlgorithm {
/// Decompress data compressed with particular algorithm.
static func decompress(data: Data) throws -> Data
}