2#ifndef DUNE_PDELAB_FUNCTION_LOCALFUNCTIONHELPER_HH
3#define DUNE_PDELAB_FUNCTION_LOCALFUNCTIONHELPER_HH
5#include <dune/pdelab/function/tags.hh>
6#include <dune/typetree/visitor.hh>
14 template<
typename Entity>
15 struct PowerCompositeBindVisitor
16 :
public TypeTree::TreeVisitor,
public TypeTree::DynamicTraversal
18 PowerCompositeBindVisitor(
const Entity & e) : e_(e) {}
19 template<
typename LeafNode,
typename TreePath>
27 struct PowerCompositeUnbindVisitor
28 :
public TypeTree::TreeVisitor,
public TypeTree::DynamicTraversal
30 template<
typename LeafNode,
typename TreePath>
38 class LocalFunctionLeafNodeWrapper
39 :
public TypeTree::LeafNode
44 LocalFunctionLeafNodeWrapper(
const F& f) :
typename std::decay_t< T >::ImplementationTag ImplementationTag
Returns the implementation tag of the given Node.
Definition: nodeinterface.hh:74
constexpr auto treePath(const T &... t)
Constructs a new HybridTreePath from the given indices.
Definition: treepath.hh:323
Dune namespace.
Definition: alignedallocator.hh:13
void leaf(T &&, TreePath) const
Method for leaf traversal.
Definition: visitor.hh:93