Class TreeMultiMapNode<K, V>

Node type used by TreeMultiMap (alias to RedBlackTreeNode for backward compatibility).

Direct node manipulation is discouraged. Use TreeMultiMap methods instead.

Type Parameters

  • K = any
  • V = any

Hierarchy (view full)

Accessors

  • get familyPosition(): FamilyPosition
  • Gets the position of the node relative to its parent.

    Returns FamilyPosition

    The family position (e.g., 'ROOT', 'LEFT', 'RIGHT').

    Time O(1), Space O(1)