Skip to content

ITraversal<TNode> Interface

Definition

Strategy for traversing nodes in a tree.

public abstract interface ITraversal<TNode>
   where TNode : Node<TNode>

Type Parameters

Name Description
TNode The type of nodes in the tree.

Methods

Name Description
Enumerate(TNode, Boolean, Func<TNode, Boolean>) Enumerates over a node and its descendents.