ATreeNode

open fun ATreeNode(    dat: T,     l: ITreeNode<out Any>,     r: ITreeNode<out Any>)

Builds the internals of a tree node.

Parameters

dat

the data contained within the node

l

the left child

r

the right child