Class TreeMultiMapNode<K, V>

Node used by TreeMultiMap; stores the key with a bucket of values (array).

Time O(1), Space O(1)

Type Parameters

  • K = any
  • V = any

Constructors

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)