Tree

interface Tree<D>

Types

Companion
Link copied to clipboard
common
object Companion

Functions

createChild
Link copied to clipboard
common
abstract fun createChild(data: D? = null): RemovableTreeNode<D>
equals
Link copied to clipboard
common
open operator fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
common
open fun hashCode(): Int
toString
Link copied to clipboard
common
open fun toString(): String

Properties

children
Link copied to clipboard
common
abstract val children: Sequence<TreeNode<D>>
descendants
Link copied to clipboard
common
abstract val descendants: Sequence<TreeNode<D>>

Inheritors

ConcurrentTree
Link copied to clipboard

Extensions

createChild
Link copied to clipboard
common
fun <D> Tree<D>.createChild(): RemovableTreeNode<D>

Sources

(source)
Link copied to clipboard