|
TreeTNodeTraverse Method
|
Namespace:
Accord.Collections
Assembly:
Accord (in Accord.dll) Version: 3.8.0
Syntax public IEnumerable<TNode> Traverse(
TraversalMethod<TNode> method
)
Public Function Traverse (
method As TraversalMethod(Of TNode)
) As IEnumerable(Of TNode)
Request Example
View SourceParameters
- method
- Type: Accord.CollectionsTraversalMethodTNode
The tree traversal method. Common methods are
available in the TreeTraversalstatic class.
Return Value
Type:
IEnumerableTNodeAn
IEnumerableT object which can be used to
traverse the tree using the chosen traversal method.
See Also