HuffmanNode

data class HuffmanNode(var children: ArrayList<Any> = arrayListOf(), var index: Int = 0)(source)

Constructors

Link copied to clipboard
constructor(children: ArrayList<Any> = arrayListOf(), index: Int = 0)

Properties

Link copied to clipboard
Link copied to clipboard
var index: Int

Functions

Link copied to clipboard
fun setChildAt(index: Int, value: Any)