Expand description
Module defining iterators.
Structs§
- Ancestors
Iter Ptr - Ancestors iterators which starts from a node and yields nodes bottom-up until the root of the tree is reached.
- Children
MutIter - Mutable children iterator.
- Custom
Walk Iter Ptr - An iterator which can traverse the tree arbitrarily in any direction where the walk direction
is determined by a custom
next_node
closure with signatureFn(Node) -> Option(Node)
.