Expand description
Tree traversal
Modules§
Structs§
Traits§
- Visit
- A trait to allow responding to a traversal designed to observe all entries in a tree, recursively while keeping track of paths if desired.
Functions§
- breadthfirst
- Start a breadth-first iteration over the
root
trees entries. - depthfirst
- A depth-first traversal of the
root
tree, that preserves the natural order of a tree while immediately descending into sub-trees.