Method Key : K () Property
Returns the key contained in the map node.
Impressum, Datenschutzerklärung
Node objects are responsible for mainting the association between keys and values in a map. More...
Properties | |
---|---|
Key : K () |
Returns the key contained in the map node. |
Value : V () |
Returns the value contained in the map node. |
Methods | |
---|---|
NextNode : Node () |
Returns the next node in the map, or Null if this is the last node. |
PrevNode : Node () |
Returns the previous node in the map, or Null if this is the first node. |
Node objects are responsible for mainting the association between keys and values in a map.
Method Key : K () Property
Returns the key contained in the map node.
Method Value : V () Property
Returns the value contained in the map node.
Method NextNode : Node ()
Returns the next node in the map, or Null if this is the last node.
Nodes are sorted by key, so the next node's key will always have a greater value than this node.
Method PrevNode : Node ()
Returns the previous node in the map, or Null if this is the first node.
Nodes are sorted by key, so the previous node's key will always have a lesser value than this node.