|
template<typename T , typename TreePath , typename U > |
auto | pre (T &&t, TreePath treePath, const U &u) const |
| Method for prefix tree traversal. More...
|
|
template<typename T , typename TreePath , typename U > |
auto | in (T &&t, TreePath treePath, const U &u) const |
| Method for infix tree traversal. More...
|
|
template<typename T , typename TreePath , typename U > |
auto | post (T &&t, TreePath treePath, const U &u) const |
| Method for postfix tree traversal. More...
|
|
template<typename T , typename TreePath , typename U > |
auto | leaf (T &&t, TreePath treePath, const U &u) const |
| Method for leaf traversal. More...
|
|
template<typename T , typename Child , typename TreePath , typename ChildIndex , typename U > |
auto | beforeChild (T &&t, Child &&child, TreePath treePath, ChildIndex childIndex, const U &u) const |
| Method for parent-child traversal. More...
|
|
template<typename T , typename Child , typename TreePath , typename ChildIndex , typename U > |
auto | afterChild (T &&t, Child &&child, TreePath treePath, ChildIndex childIndex, const U &u) const |
| Method for child-parent traversal. More...
|
|
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.
template<typename T , typename Child , typename TreePath , typename ChildIndex , typename U >
auto Dune::TypeTree::Experimental::DefaultHybridVisitor::afterChild |
( |
T && |
t, |
|
|
Child && |
child, |
|
|
TreePath |
treePath, |
|
|
ChildIndex |
childIndex, |
|
|
const U & |
u |
|
) |
| const |
|
inline |
Method for child-parent traversal.
This method gets called after visiting a child node.
- Note
- This method gets called even if the child node was not visited because the visitor chose not to do so.
- Parameters
-
t | The parent node. |
child | The child node that was visited last (if the visitor did not reject it). |
treePath | The position of the parent node within the TypeTree. |
childIndex | The index of the child node in relation to the parent node. |
u | The carry value from previous visit. |
- Returns
- The result of applying this visitor to u.
template<typename T , typename Child , typename TreePath , typename ChildIndex , typename U >
auto Dune::TypeTree::Experimental::DefaultHybridVisitor::beforeChild |
( |
T && |
t, |
|
|
Child && |
child, |
|
|
TreePath |
treePath, |
|
|
ChildIndex |
childIndex, |
|
|
const U & |
u |
|
) |
| const |
|
inline |
Method for parent-child traversal.
This method gets called before visiting a child node.
- Note
- This method gets called even if the visitor decides not to visit the child in question.
- Parameters
-
t | The parent node. |
child | The child node that will (potentially) be visited next. |
treePath | The position of the parent node within the TypeTree. |
childIndex | The index of the child node in relation to the parent node. |
u | The carry value from previous visit. |
- Returns
- The result of applying this visitor to u.