mirror of
https://github.com/tsolomko/SWCompression.git
synced 2026-06-23 14:56:41 +00:00
14 lines
201 B
Swift
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
|
|
|
|
}
|