Interface ITreeVisitor
Interface for a visitor over non-generic trees.
Namespace: System.Linq.CompilerServices
Assembly: Nuqleon.Linq.CompilerServices.dll
Syntax
public interface ITreeVisitor
Methods
Visit(ITree)
Visits the specified tree.
Declaration
ITree Visit(ITree node)
Parameters
Type | Name | Description |
---|---|---|
ITree | node | Tree to visit. |
Returns
Type | Description |
---|---|
ITree | Result of the visit. |