TraverseNodeFunc


Description:

public delegate bool TraverseNodeFunc<K,V> (TreeNode<K,V> node)

Specifies the type of function passed to foreach_node.

It is passed each node, together with the user_data parameter passed to foreach_node. If the function returns true, the traversal is stopped.

Parameters:

node

a TreeNode

data

user data passed to foreach_node

Returns:

true to stop the traversal


Namespace: GLib
Package: glib-2.0