1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
|
// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
// vi: set et ts=4 sw=2 sts=2:
// SPDX-FileCopyrightInfo: Copyright © DUNE Project contributors, see file LICENSE.md in module root
// SPDX-License-Identifier: LicenseRef-GPL-2.0-only-with-DUNE-exception
#ifndef DUNE_COMMON_TUPLEVECTOR_HH
#define DUNE_COMMON_TUPLEVECTOR_HH
#include <tuple>
#include <utility>
#include <dune/common/indices.hh>
#include <dune/common/typetraits.hh>
#include <dune/common/std/type_traits.hh>
/**
* \file
* \brief Provides the TupleVector class that augments std::tuple by operator[]
* \author Carsten Gräser
*/
namespace Dune
{
/**
* \brief A class augmenting std::tuple by element access via operator[]
*
* \ingroup Utilities
*/
template<class... T>
class TupleVector : public std::tuple<T...>
{
using Base = std::tuple<T...>;
template<class... TT>
using TupleConstructorDetector = decltype(Base(std::declval<TT&&>()...));
template<class... TT>
using hasTupleConstructor = Dune::Std::is_detected<TupleConstructorDetector, TT...>;
public:
/** \brief Construct from a set of arguments
*
* This is only available if you can construct
* the underlying std::tuple from the same argument
* list.
*/
template<class... TT,
std::enable_if_t<hasTupleConstructor<TT...>::value, int> = 0>
constexpr TupleVector(TT&&... tt) :
Base(std::forward<TT>(tt)...)
{}
/** \brief Default constructor
*/
constexpr TupleVector()
{}
/** \brief Const access to the tuple elements
*/
template<std::size_t i,
std::enable_if_t<(i < sizeof...(T)), int> = 0>
constexpr decltype(auto) operator[](const Dune::index_constant<i>&) const
{
return std::get<i>(*this);
}
/** \brief Non-const access to the tuple elements
*/
template<std::size_t i,
std::enable_if_t<(i < sizeof...(T)), int> = 0>
decltype(auto) operator[](const Dune::index_constant<i>&)
{
return std::get<i>(*this);
}
/** \brief Number of elements of the tuple */
static constexpr std::size_t size()
{
return std::tuple_size<Base>::value;
}
};
template<class... T>
constexpr auto makeTupleVector(T&&... t)
{
// The std::decay_t<T> is is a slight simplification,
// because std::reference_wrapper needs special care.
return TupleVector<std::decay_t<T>...>(std::forward<T>(t)...);
}
} // namespace Dune
namespace std
{
/** \brief Make std::tuple_element work for TupleVector
*
* It derives from std::tuple after all.
*/
template <size_t i, typename... Args>
struct tuple_element<i,Dune::TupleVector<Args...> >
{
using type = typename std::tuple_element<i, std::tuple<Args...> >::type;
};
/** \brief Make std::tuple_size work for TupleVector
*
* It derives from std::tuple after all.
*/
template <typename... Args>
struct tuple_size<Dune::TupleVector<Args...> >
: std::integral_constant<std::size_t, sizeof...(Args)>
{};
}
#endif // DUNE_COMMON_TUPLEVECTOR_HH
|