Filters nodes in/out of a tree.

Namespace: NHibernate.Hql.Ast.ANTLR.Util
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
public delegate bool FilterPredicate(
	IASTNode node
)
Visual Basic
Public Delegate Function FilterPredicate ( _
	node As IASTNode _
) As Boolean
Visual C++
public delegate bool FilterPredicate(
	IASTNode^ node
)

Parameters

node
Type: NHibernate.Hql.Ast.ANTLR.Tree..::..IASTNode
The node to check.

Return Value

true to keep the node, false if the node should be filtered out.

See Also