HuffmanNode

data class HuffmanNode(children: ArrayList<Any>, index: Int)

Functions

component1
Link copied to clipboard
common
operator fun component1(): ArrayList<Any>
component2
Link copied to clipboard
common
operator fun component2(): Int
copy
Link copied to clipboard
common
fun copy(children: ArrayList<Any> = arrayListOf(), index: Int = 0): JPEGDecoder.HuffmanNode
equals
Link copied to clipboard
common
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
common
open override fun hashCode(): Int
setChildAt
Link copied to clipboard
common
fun setChildAt(index: Int, value: Any)
toString
Link copied to clipboard
common
open override fun toString(): String

Properties

children
Link copied to clipboard
common
var children: ArrayList<Any>
index
Link copied to clipboard
common
var index: Int = 0

Sources

(source)
Link copied to clipboard