struct Huffman::Node
- Huffman::Node
- Struct
- Value
- Object
Defined in:
huffman.crConstructors
Class Method Summary
Instance Method Summary
- #binary : Bool
- #binary=(binary : Bool)
- #count : Int64
- #count=(count : Int64)
- #leaf?
- #left : Int32
- #left=(left : Int32)
- #parent : Int32
- #parent=(parent : Int32)
- #right : Int32
- #right=(right : Int32)
- #to_io(io : IO, format : IO::ByteFormat)
Constructor Detail
def self.new(parent : Int32 = -1, left : Int32 = -1, right : Int32 = -1, count : Int64 = Int64::MAX, binary : Bool = false)
#