vecmem 1.14.0
Loading...
Searching...
No Matches
tuple.hpp
1/* VecMem project, part of the ACTS project (R&D line)
2 *
3 * (c) 2023-2025 CERN for the benefit of the ACTS project
4 *
5 * Mozilla Public License Version 2.0
6 */
7#pragma once
8
9// Local include(s).
10#include "vecmem/utils/type_traits.hpp"
11#include "vecmem/utils/types.hpp"
12
13// System include(s).
14#include <type_traits>
15
16namespace vecmem {
17
23template <typename... Ts>
24struct tuple {
25
26 // As long as we did everything correctly, this should only get instantiated
27 // with an empty parameter list, for the implementation to work correctly.
28 static_assert(sizeof...(Ts) == 0,
29 "There's a coding error in vecmem::tuple!");
30
32 constexpr tuple() = default;
33
34}; // struct tuple
35
49template <typename T, typename... Ts>
50struct tuple<T, Ts...> {
51
53 constexpr tuple() = default;
55 constexpr tuple(const tuple &) = default;
57 constexpr tuple(tuple &&) noexcept = default;
58
64 std::enable_if_t<
65 vecmem::details::conjunction<
66 std::is_constructible<T, std::decay_t<U>>,
67 std::is_constructible<Ts, std::decay_t<Us>>...>::value,
68 bool> = true>
69 VECMEM_HOST_AND_DEVICE constexpr tuple(const tuple<U, Us...> &parent)
70 : m_head(parent.m_head), m_tail(parent.m_tail) {}
71
77 template <
78 typename U, typename... Us,
79 std::enable_if_t<
81 vecmem::details::negation<std::is_same<tuple<T, Ts...>, U>>,
82 std::is_constructible<T, U &&>,
83 std::is_constructible<Ts, Us &&>...>::value,
84 bool> = true>
85 VECMEM_HOST_AND_DEVICE constexpr tuple(U &&head, Us &&... tail)
86 : m_head(std::forward<U>(head)), m_tail(std::forward<Us>(tail)...) {}
87
96 template <typename U, typename... Us,
97 std::enable_if_t<vecmem::details::conjunction<
98 std::is_constructible<T, U &&>,
99 std::is_constructible<Ts, Us &&>...>::value,
100 bool> = true>
101 VECMEM_HOST_AND_DEVICE constexpr tuple(U &&head, tuple<Us...> &&tail)
102 : m_head(std::forward<U>(head)), m_tail(std::move(tail)) {}
103
112 VECMEM_HOST_AND_DEVICE constexpr tuple &operator=(const tuple &parent) {
113 m_head = parent.m_head;
114 m_tail = parent.m_tail;
115 return *this;
116 }
117
122 template <typename U, typename... Us,
123 std::enable_if_t<(sizeof...(Ts) == sizeof...(Us)) &&
125 std::is_assignable<T, U &&>,
126 std::is_assignable<Ts, Us &&>...>::value,
127 bool> = true>
128 VECMEM_HOST_AND_DEVICE constexpr tuple &operator=(
129 const tuple<U, Us...> &parent) {
130 m_head = parent.m_head;
131 m_tail = parent.m_tail;
132 return *this;
133 }
134
139
140}; // struct tuple
141
144
152template <std::size_t I, typename... Ts>
153VECMEM_HOST_AND_DEVICE inline constexpr const auto &get(
154 const tuple<Ts...> &t) noexcept;
155
163template <std::size_t I, typename... Ts>
164VECMEM_HOST_AND_DEVICE inline constexpr auto &get(tuple<Ts...> &t) noexcept;
165
172template <typename... Ts>
173VECMEM_HOST_AND_DEVICE inline constexpr tuple<Ts &...> tie(Ts &... args);
174
181template <class... Ts>
182VECMEM_HOST_AND_DEVICE inline constexpr tuple<typename std::decay<Ts>::type...>
183make_tuple(Ts &&... args);
184
190template <std::size_t I, class T>
192
198template <std::size_t I, typename... Ts>
199struct tuple_element<I, tuple<Ts...>> {
200
202 using type = std::decay_t<decltype(get<I>(std::declval<tuple<Ts...>>()))>;
203};
204
210template <std::size_t I, class T>
212
214
215} // namespace vecmem
216
217// Include the implementation.
218#include "vecmem/utils/impl/tuple.ipp"
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
typename tuple_element< I, T >::type tuple_element_t
Convenience accessor for the I-th element of a tuple.
Definition tuple.hpp:211
Implementation for std::conjunction.
Definition type_traits.hpp:53
Implementation for std::negation.
Definition type_traits.hpp:91
constexpr tuple(tuple &&) noexcept=default
Default move constructor.
T m_head
The first/head element of the tuple.
Definition tuple.hpp:136
VECMEM_HOST_AND_DEVICE constexpr tuple & operator=(const tuple &parent)
Assignment operator.
Definition tuple.hpp:112
VECMEM_HOST_AND_DEVICE constexpr tuple(U &&head, Us &&... tail)
Main constructor, from a list of tuple elements.
Definition tuple.hpp:85
constexpr tuple()=default
Default constructor.
VECMEM_HOST_AND_DEVICE constexpr tuple(U &&head, tuple< Us... > &&tail)
"Concatenation" constructor
Definition tuple.hpp:101
constexpr tuple(const tuple &)=default
Default copy constructor.
tuple< Ts... > m_tail
The rest of the tuple elements.
Definition tuple.hpp:138
std::decay_t< decltype(get< I >(std::declval< tuple< Ts... > >()))> type
Type of the I-th element of the specified tuple.
Definition tuple.hpp:202
Default/empty implementation for vecmem::tuple_element.
Definition tuple.hpp:191
Default tuple type.
Definition tuple.hpp:24
constexpr tuple()=default
Default constructor for the default tuple type.