dune-common 2.11
Loading...
Searching...
No Matches
Dune::TypeTree::Concept::UniformInnerTreeNode Concept Reference

Model of an inner node of a typetree with uniform nodes accessible via runtime index. More...

#include <dune/common/typetree/nodeconcepts.hh>

Concept definition

template<class Node>
concept Dune::TypeTree::Concept::UniformInnerTreeNode = TreeNode<Node> && requires(Node node, std::size_t index)
{
node.child(index);
}
Model of a node of a typetree.
Definition nodeconcepts.hh:34
Model of an inner node of a typetree with uniform nodes accessible via runtime index.
Definition nodeconcepts.hh:52

Detailed Description

Model of an inner node of a typetree with uniform nodes accessible via runtime index.