TraverseFunc

Specifies the type of function passed to glib.tree.Tree.traverse. It is passed the key and value of each node, together with the user_data parameter passed to glib.tree.Tree.traverse. If the function returns true, the traversal is stopped.

alias TraverseFunc = bool delegate
(
void* key
,
void* value
)

Return Value

true to stop the traversal