Files
SWCompression/Sources/Common/HuffmanLength.swift
T
2018-01-03 19:44:18 +03:00

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
}