Files
SWCompression/Sources/Common/HuffmanLength.swift
T

14 lines
201 B
Swift

// Copyright (c) 2018 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
import Foundation
struct HuffmanLength {
let symbol: Int
let codeLength: Int
}