Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ArnaudValensi/vec-tree
/ types & classes
Types & classes
12 in github.com/ArnaudValensi/vec-tree
⨍
Functions
59
◇
Types & classes
12
↓ 1 callers
Class
DescendantsIter
An iterator of references to a given node and its descendants, in tree order.
src/lib.rs:887
↓ 1 callers
Class
DescendantsWithDepthIter
An iterator of references to a given node and its descendants, with depth, in tree order.
src/lib.rs:972
Class
AncestorsIter
An iterator of references to the ancestors a given node.
src/lib.rs:820
Class
ChildrenIter
An iterator of references to the children of a given node.
src/lib.rs:798
Class
FollowingSiblingsIter
An iterator of references to the siblings after a given node.
src/lib.rs:813
Class
Node
src/lib.rs:155
Enum
NodeEdge
Indicator if the node is at a start or endpoint of the tree
src/lib.rs:828
Enum
NodeEdgeWithDepth
Indicator if the node is at a start or endpoint of the tree
src/lib.rs:905
Class
PrecedingSiblingsIter
An iterator of references to the siblings before a given node.
src/lib.rs:805
Class
TraverseIter
An iterator of references to a given node and its descendants, in depth-first search pre-order NLR traversal. https://en.wikipedia.org/wiki/Tree_trave
src/lib.rs:841
Class
TraverseWithDepthIter
An iterator of references to a given node and its descendants, with depth, in depth-first search pre-order NLR traversal. https://en.wikipedia.org/wik
src/lib.rs:918
Class
VecTree
src/lib.rs:149