Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration Direction

A direction to walk the tree

Index

Enumeration members

Enumeration members

down

down:

Walk through all parent nodes until reaching the root node

left

left:

Walk through all children of the parent node of this node while decrementing the index (thus walking left) until you reached the first node.

right

right:

Walk through all children of the parent node of this node while incrementing the index (thus walking right) until you reached the last node.

rootUp

rootUp:

Go down until reaching the root and then back up calling the action function on each encountered node

up

up:

Walk through each children and all grandchildren of the current node until no nodes are left

Generated using TypeDoc