DataTreeItem

sealed class DataTreeItem<out T : Any>

Inheritors

Types

Link copied to clipboard
class Leaf<out T : Any>(val data: Data<T>) : DataTreeItem<T>
Link copied to clipboard
class Node<out T : Any>(val tree: DataTree<T>) : DataTreeItem<T>

Properties

Link copied to clipboard
val <T : Any> DataTreeItem<T>?.data: Data<T>?
Link copied to clipboard
abstract val meta: Meta
Link copied to clipboard
Link copied to clipboard