Structsยง
- Following
Node ๐Iterator - Preceding
Node ๐Iterator - Simple
Node ๐Iterator - Tree
Iterator ๐ - Unrooted
Following ๐Flat Tree Nodes Traversal - A traversal of a [
Document]โs flat tree. This is both a pre-order and post-order unrooted traversal. This means that an item is returned both when encountering a node for the first time and when leaving a node. In addition, no garbage collection can happen while iterating, allowing returning unrooted values for performance reasons. - Unrooted
Following ๐Node Iterator - Unrooted
Preceding ๐Node Iterator - Unrooted
Simple ๐Node Iterator - An efficient SimpleNodeIterator because it skips rooting if there are no GC pauses.
- Unrooted
Tree ๐Iterator - An efficient TreeIterator because it skips rooting if there are no GC pauses.
Enumsยง
- PrePost
Iteration ๐ - An
Itemin an traversal that is both pre-order and post-order. Each iteration of the traversal is either an record of entering a node or a leaving a node during the course of traversal. - Shadow
Including ๐ - Whether a tree traversal should pass shadow tree boundaries.