KoneMapNode

interface KoneMapNode<out Key, out Value> : KoneMapEntry<Key, Value> (source)

Represents a node in the inner structure of KoneMap.

The node can be detached by removing the corresponding place from the collection it was defined in. In that case only its key and value are preserved and other methods and properties throw DetachedNodeException.

See also

Inheritors

Properties

Link copied to clipboard
abstract val isDetached: Boolean

Indicates if the node is detached from the structure it was a part of.

Link copied to clipboard
abstract override val key: Key

Returns key corresponding to that node.

Link copied to clipboard
abstract override val value: Value

Returns value corresponding to that node. Change of the value changes the corresponding value in the structure.

Functions

Link copied to clipboard