|
template<typename T , typename TreePath , typename U > |
auto | pre (T &&, TreePath, const U &u) const |
| Method for prefix tree traversal.
|
|
template<typename T , typename TreePath , typename U > |
auto | in (T &&, TreePath, const U &u) const |
| Method for infix tree traversal.
|
|
template<typename T , typename TreePath , typename U > |
auto | post (T &&, TreePath, const U &u) const |
| Method for postfix tree traversal.
|
|
template<typename T , typename TreePath , typename U > |
auto | leaf (T &&, TreePath, const U &u) const |
| Method for leaf traversal.
|
|
template<typename T , typename Child , typename TreePath , typename ChildIndex , typename U > |
auto | beforeChild (T &&, Child &&, TreePath, ChildIndex, const U &u) const |
| Method for parent-child traversal.
|
|
template<typename T , typename Child , typename TreePath , typename ChildIndex , typename U > |
auto | afterChild (T &&, Child &&, TreePath, ChildIndex, const U &u) const |
| Method for child-parent traversal.
|
|
Hybrid visitor interface and base class for TypeTree hybrid visitors.
DefaultHybridVisitor defines the interface for visitors that can be applied to a TypeTree using hybridApplyToTree(). Each method of the visitor is passed a node of the tree (either as a mutable or a const reference, depending on the constness of the tree hybridApplyToTree() was called with). The second argument is of type TreePath and denotes the exact position of the node within the TypeTree, encoded as child indices starting at the root node.
An hybrid visitor is different from a plain visitor because each method receives a carried value (last argument) on the node visit and is required to return a transformed value from it. Transformations of the carried value type are allowed as long as they are expected on the next visited node.
In order to create a functioning visitor, an implementation will - in addition to providing the methods of this class - also have to contain the following template struct, which is used to determine whether to visit a given node:
template<typename Node, typename Child, typename TreePath>
struct VisitChild
{
static const bool value = ...;
};
- Note
- This class can also be used as a convenient base class if the implemented visitor only needs to act on some of the possible callback sites, avoiding a lot of boilerplate code.