dune-common  2.5.1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
tuples.hh
Go to the documentation of this file.
1 #warning The header dune/common/tuples.hh is deprecated. Use directly "std::tuple" and include dune/common/streamoperators.hh for stream operators.
2 
3 #ifndef DUNE_TUPLES_HH
4 #define DUNE_TUPLES_HH
5 
6 #include <tuple>
9 
10 namespace Dune {
11  using std::tuple;
12  using std::tuple_element;
13  using std::get;
14  using std::tuple_size;
15  using std::tie;
16  using std::make_tuple;
17 }
18 #endif
Implementation of stream operators for std::array and std::tuple.
Reference get(const RAPropertyMapHelper< Reference, PropertyMap > &pmap, const Key &key)
Definition: propertymap.hh:82
Contains utility classes which can be used with std::tuple.