Tree
The GTree struct is an opaque data structure representing a glib-Balanced-Binary-Trees. It should be accessed only by using the following functions.
Skipped during bindings generation
parameter
orig_key
: orig_key: Out parameter is not supportedmethod
traverse
: C function g_tree_traverse is ignoredparameter
key_compare_func
: CompareFuncparameter
key_destroy_func
: DestroyNotify
Constructors
Functions
Registers a cleaner to be executed when this proxy object is garbage collected.
Removes all keys and values from the #GTree and decreases its reference count by one. If keys and/or values are dynamically allocated, you should either free them first or create the #GTree using g_tree_new_full(). In the latter case the destroy functions you supplied will be called on all keys and values before destroying the #GTree.
Calls the given function for each of the key/value pairs in the #GTree. The function is passed the key and value of each pair, and the given
Calls the given function for each of the nodes in the #GTree. The function is passed the pointer to the particular node, and the given
Inserts a key/value pair into a #GTree.
Gets the value corresponding to the given key. Since a #GTree is automatically balanced as key/value pairs are added, key lookup is O(log n) (where n is the number of key/value pairs in the tree).
Gets the tree node corresponding to the given key. Since a #GTree is automatically balanced as key/value pairs are added, key lookup is O(log n) (where n is the number of key/value pairs in the tree).
Gets the lower bound node corresponding to the given key, or null if the tree is empty or all the nodes in the tree have keys that are strictly lower than the searched key.
Removes a previously registered cleaner from this proxy object.
Inserts a new key and value into a #GTree similar to g_tree_insert_node(). The difference is that if the key already exists in the #GTree, it gets replaced by the new key. If you supplied a @value_destroy_func when creating the #GTree, the old value is freed using that function. If you supplied a @key_destroy_func when creating the #GTree, the old key is freed using that function.
Searches a #GTree using @search_func.
Searches a #GTree using @search_func.
Gets the upper bound node corresponding to the given key, or null if the tree is empty or all the nodes in the tree have keys that are lower than or equal to the searched key.