Class monkey.map.Node - leonard-thieu/monkey GitHub Wiki

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

Properties

Methods

Detailed Discussion

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

Property Documentation

Method Key : K ()

Returns the key contained in the map node.

Method Value : V ()

Returns the value contained in the map node.

Method 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.

⚠️ **GitHub.com Fallback** ⚠️