Expand description
Internal, arena-based storage for Dom nodes
Structs§
- An iterator of references to the ancestors a given node.
- An iterator of references to the children of a given node.
- An iterator of references to a given node and its descendants, in tree order.
- An iterator of references to the siblings after a given node.
- An linear iterator, does not respect the DOM in any way, it just iterates over the nodes like a Vec
- Hierarchical information about a node (stores the indicies of the parent / child nodes).
- The hierarchy of nodes is stored separately from the actual node content in order to save on memory, since the hierarchy can be re-used across several DOM trees even if the content changes.
- A node identifier within a particular
Arena
. - An iterator of references to the siblings before a given node.
- An iterator of references to the children of a given node, in reverse order.
- An iterator of references to a given node and its descendants, in reverse tree order.
- An iterator of references to a given node and its descendants, in tree order.