TreeNode
Object Hierarchy:
Description:
[ Compact ]
[ Version ( since = "2.68" ) ]
[ CCode ( free_function = "" ) ]
public class TreeNode<K,V>
An opaque type which identifies a specific node in a Tree.
Content:
Methods:
- public unowned K key ()
Gets the key stored at a particular tree node.
- public unowned TreeNode<K,V>? next ()
Returns the next in-order node of the tree, or
null if the passed node was already the last one.
- public unowned TreeNode<K,V>? previous ()
Returns the previous in-order node of the tree, or
null if the passed node was already the first one.
- public unowned V value ()
Gets the value stored at a particular tree node.