dune-common
2.4.1-rc2
|
Helper template to prepend a type to a tuple. More...
#include <dune/common/tupleutility.hh>
Public Types | |
typedef Tuple | type |
For all specializations this is the type of a tuple with T prepended. More... | |
Helper template to prepend a type to a tuple.
Tuple | The tuple type to extend |
T | The type to be prepended to the tuple |
typedef Tuple Dune::PushFrontTuple< Tuple, T >::type |
For all specializations this is the type of a tuple with T prepended.
Suppose you have Tuple=tuple<T1, T2, ..., TN> then this type is tuple<T, T1, T2, ..., TN>.