Files
SWCompression/Sources/Common/CodingTree/Code.swift
T

16 lines
244 B
Swift

// Copyright (c) 2019 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
import Foundation
struct Code {
/// Number of bits used for `code`.
let bits: Int
let code: Int
let symbol: Int
}