Tipic Instant Messaging Platform - Programmer's Reference Guide

TrieWalker Delegate

A method to get called for each node in the tree

[Visual Basic]
Public Delegate Function TrieWalker( _
   ByVal e As TrieNode, _
   ByVal data As Object _
) As Boolean
[C#]
public delegate bool TrieWalker(
   TrieNode e,
   object data
);

Requirements

Namespace: bedrock.collections

Assembly: tipic.xmpp (in tipic.xmpp.dll)

See Also

bedrock.collections Namespace