KoneMutableLinkedSetNode

Represents a node in the inner structure of a KoneMutableLinkedNoddedSet. See KoneMutableLinkedNoddedSet and KoneSetNode for more.

The node can be detached by removing the corresponding element from the set it was defined in. In that case only its element is preserved and other methods and properties throw DetachedNodeException.

See also

Properties

Link copied to clipboard
abstract val element: Element

Returns element corresponding to that node.

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 nextNode: KoneMutableLinkedSetNode<Element>?

Returns node corresponding to the next place from this node's corresponding place. If there is no such node (i.e. this node is the last one), null is returned.

Link copied to clipboard

Returns node corresponding to the previous place from this node's corresponding place. If there is no such node (i.e. this node is the first one), null is returned.

Functions

Link copied to clipboard

Initiates an iterator over corresponding KoneLinkedNoddedSet with cursor placed right after this node.

Link copied to clipboard

Initiates an iterator over corresponding KoneLinkedNoddedSet with cursor placed right before this node.

Link copied to clipboard
abstract fun remove()