Legal Notice, Privacy Policy

Impressum, Datenschutzerklärung

Cerberus X Documentation

Class Node<K,V>

Node objects are responsible for mainting the association between keys and values in a map. More...

Declarations

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.

Detailed Discussion

Node objects are responsible for mainting the association between keys and values in a map.


Properties Documentation

Method Key : K () Property

Returns the key contained in the map node.

Method Value : V () Property

Returns the value contained in the map node.


Methods Documentation

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.