TreeNode

An opaque type which identifies a specific node in a #GTree.

Members

Functions

key
void* key()

Gets the key stored at a particular tree node.

next
glib.tree_node.TreeNode next()

Returns the next in-order node of the tree, or null if the passed node was already the last one.

previous
glib.tree_node.TreeNode previous()

Returns the previous in-order node of the tree, or null if the passed node was already the first one.

value
void* value()

Gets the value stored at a particular tree node.