5 namespace Antares::Expressions::Nodes
14 std::stack<Node*> nodeStack;
18 using iterator_category = std::forward_iterator_tag;
20 using difference_type = std::ptrdiff_t;
61 std::stack<const Node*> nodeStack;
65 using iterator_category = std::forward_iterator_tag;
67 using difference_type = std::ptrdiff_t;
Definition: pre-order.h:60
Definition: pre-order.h:13
Definition: pre-order.h:45
Definition: pre-order.h:92
Base class for nodes in a syntax tree.
Definition: Node.h:30