20template <std::
size_t I>
24 template <
typename...
Ts>
25 VECMEM_HOST_AND_DEVICE
static constexpr const auto &
get(
30 template <
typename...
Ts>
42 template <
typename...
Ts>
43 VECMEM_HOST_AND_DEVICE
static constexpr const auto &
get(
48 template <
typename...
Ts>
57template <std::size_t
I,
typename...
Ts>
58VECMEM_HOST_AND_DEVICE
inline constexpr const auto &
get(
62 static_assert(
I <
sizeof...(Ts),
63 "Attempt to access index greater than tuple size.");
69template <std::size_t
I,
typename...
Ts>
73 static_assert(
I <
sizeof...(Ts),
74 "Attempt to access index greater than tuple size.");
80template <
typename...
Ts>
Main namespace for the vecmem classes/functions.
Definition atomic_ref.hpp:16
VECMEM_HOST_AND_DEVICE constexpr tuple< typename std::decay< Ts >::type... > make_tuple(Ts &&... args)
Make a tuple with automatic type deduction.
Definition tuple.ipp:88
VECMEM_HOST_AND_DEVICE constexpr const auto & get(const tuple< Ts... > &t) noexcept
Get a constant element out of a tuple.
Definition tuple.ipp:58
std::vector< T, vecmem::polymorphic_allocator< T > > vector
Alias type for vectors with our polymorphic allocator.
Definition vector.hpp:35
VECMEM_HOST_AND_DEVICE constexpr tuple< Ts &... > tie(Ts &... args)
Tie references to existing objects, into a tuple.
Definition tuple.ipp:81
static VECMEM_HOST_AND_DEVICE constexpr auto & get(tuple< Ts... > &t)
Get the first (non-const) tuple element.
Definition tuple.ipp:49
static VECMEM_HOST_AND_DEVICE constexpr const auto & get(const tuple< Ts... > &t)
Get the first (const) tuple element.
Definition tuple.ipp:43
Struct used to implement vecmem::get in a C++14 style.
Definition tuple.ipp:21
static VECMEM_HOST_AND_DEVICE constexpr auto & get(tuple< Ts... > &t)
Get the I-th (non-const) tuple element recursively.
Definition tuple.ipp:31
static VECMEM_HOST_AND_DEVICE constexpr const auto & get(const tuple< Ts... > &t)
Get the I-th (const) tuple element recursively.
Definition tuple.ipp:25
Default tuple type.
Definition tuple.hpp:24