#include <cstddef>
#include <type_traits>
#include <dune/common/documentation.hh>
Go to the source code of this file.
|
template<typename Node > |
using | Dune::TypeTree::NodeTag = typename std::decay_t< Node >::NodeTag |
| Returns the node tag of the given Node. More...
|
|
template<typename T > |
using | Dune::TypeTree::ImplementationTag = typename std::decay_t< T >::ImplementationTag |
| Returns the implementation tag of the given Node. More...
|
|
template<typename Node > |
using | Dune::TypeTree::StaticDegree = std::integral_constant< std::size_t, degree(static_cast< std::decay_t< Node > * >(nullptr), NodeTag< std::decay_t< Node > >()) > |
| Returns the statically known degree of the given Node type as a std::integral_constant. More...
|
|