Traverses all nodes of @trie according to the parameters. For each node matching the traversal parameters, @func will be executed.
Only %G_PRE_ORDER and %G_POST_ORDER are supported for @order.
If @max_depth is less than zero, the entire tree will be traversed. If max_depth is 1, then only the root will be traversed.
The key to start traversal from.
The order to traverse.
The flags for which nodes to callback.
the maximum depth to process.
The func to execute for each matching node.
User data for @func.
See Implementation
Traverses all nodes of @trie according to the parameters. For each node matching the traversal parameters, @func will be executed.
Only %G_PRE_ORDER and %G_POST_ORDER are supported for @order.
If @max_depth is less than zero, the entire tree will be traversed. If max_depth is 1, then only the root will be traversed.