vecmem 1.14.0
Loading...
Searching...
No Matches
tuple.ipp
1/* VecMem project, part of the ACTS project (R&D line)
2 *
3 * (c) 2023 CERN for the benefit of the ACTS project
4 *
5 * Mozilla Public License Version 2.0
6 */
7#pragma once
8
9// System include(s).
10#include <cstddef>
11#include <type_traits>
12
13namespace vecmem {
14namespace details {
15
20template <std::size_t I>
22
24 template <typename... Ts>
25 VECMEM_HOST_AND_DEVICE static constexpr const auto &get(
26 const tuple<Ts...> &t) {
27 return tuple_get_impl<I - 1>::get(t.m_tail);
28 }
30 template <typename... Ts>
31 VECMEM_HOST_AND_DEVICE static constexpr auto &get(tuple<Ts...> &t) {
32 return tuple_get_impl<I - 1>::get(t.m_tail);
33 }
34
35}; // struct tuple_get_impl
36
38template <>
39struct tuple_get_impl<0> {
40
42 template <typename... Ts>
43 VECMEM_HOST_AND_DEVICE static constexpr const auto &get(
44 const tuple<Ts...> &t) {
45 return t.m_head;
46 }
48 template <typename... Ts>
49 VECMEM_HOST_AND_DEVICE static constexpr auto &get(tuple<Ts...> &t) {
50 return t.m_head;
51 }
52
53}; // struct tuple_get_impl
54
55} // namespace details
56
57template <std::size_t I, typename... Ts>
58VECMEM_HOST_AND_DEVICE inline constexpr const auto &get(
59 const tuple<Ts...> &t) noexcept {
60
61 // Make sure that the requested index is valid.
62 static_assert(I < sizeof...(Ts),
63 "Attempt to access index greater than tuple size.");
64
65 // Return the correct element using the helper struct.
67}
68
69template <std::size_t I, typename... Ts>
70VECMEM_HOST_AND_DEVICE inline constexpr auto &get(tuple<Ts...> &t) noexcept {
71
72 // Make sure that the requested index is valid.
73 static_assert(I < sizeof...(Ts),
74 "Attempt to access index greater than tuple size.");
75
76 // Return the correct element using the helper struct.
78}
79
80template <typename... Ts>
81VECMEM_HOST_AND_DEVICE inline constexpr tuple<Ts &...> tie(Ts &... args) {
82
83 return tuple<Ts &...>(args...);
84}
85
86template <class... Ts>
87VECMEM_HOST_AND_DEVICE inline constexpr tuple<typename std::decay<Ts>::type...>
89 return tuple<typename std::decay<Ts>::type...>{std::forward<Ts>(args)...};
90}
91
92} // namespace vecmem
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