vecmem 1.14.0
Loading...
Searching...
No Matches
type_traits.hpp
1/* VecMem project, part of the ACTS project (R&D line)
2 *
3 * (c) 2021-2024 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 <algorithm>
11#include <iterator>
12#include <type_traits>
13
14namespace vecmem {
15namespace details {
16
27template <typename iterator_type, typename value_type>
28using is_iterator_of = std::is_convertible<
29 typename std::iterator_traits<iterator_type>::value_type, value_type>;
30
36template <typename CTYPE, typename NCTYPE>
37struct is_same_nc {
38 static constexpr bool value = false;
39};
40
41template <typename TYPE>
43 static constexpr bool value = true;
44};
45
52template <class...>
53struct conjunction : std::true_type {};
54
55template <class B1>
56struct conjunction<B1> : B1 {};
57
58template <class B1, class... Bn>
59struct conjunction<B1, Bn...>
60 : std::conditional_t<bool(B1::value), conjunction<Bn...>, B1> {};
61
62template <class... B>
63constexpr bool conjunction_v = conjunction<B...>::value;
64
71template <class...>
72struct disjunction : std::false_type {};
73
74template <class B1>
75struct disjunction<B1> : B1 {};
76
77template <class B1, class... Bn>
78struct disjunction<B1, Bn...>
79 : std::conditional_t<bool(B1::value), B1, disjunction<Bn...>> {};
80
81template <class... B>
82constexpr bool disjunction_v = disjunction<B...>::value;
83
90template <class B>
91struct negation : std::integral_constant<bool, !bool(B::value)> {};
92
93template <class B>
94constexpr bool negation_v = negation<B>::value;
95
100template <typename T>
101auto max(T&& t) {
102 return std::forward<T>(t);
103}
104
111template <typename T, typename... Ts>
112auto max(T&& t, Ts&&... ts) {
113 return std::max(std::forward<T>(t), max(std::forward<Ts>(ts)...));
114}
115
129#if defined(__cpp_lib_is_implicit_lifetime) && \
130 __cpp_lib_is_implicit_lifetime >= 202302L
131template <class TYPE>
132using is_implicit_lifetime = std::is_implicit_lifetime<TYPE>;
133#define VECMEM_HAVE_IS_IMPLICIT_LIFETIME
134#elif defined(__cpp_lib_is_aggregate) && __cpp_lib_is_aggregate >= 201703L
135// Implementation taken directly from P2674R1.
136template <class TYPE>
138 : disjunction<
139 std::is_scalar<TYPE>, std::is_array<TYPE>, std::is_aggregate<TYPE>,
140 conjunction<
141 std::is_trivially_destructible<TYPE>,
142 disjunction<std::is_trivially_default_constructible<TYPE>,
143 std::is_trivially_copy_constructible<TYPE>,
144 std::is_trivially_move_constructible<TYPE>>>> {};
145#define VECMEM_HAVE_IS_IMPLICIT_LIFETIME
146#else
147// If we are on such an old version of C++, we're basically in the wild west,
148// so we allow the user to do whatever they want.
149template <class TYPE>
150using is_implicit_lifetime = std::true_type;
151#endif
152
153template <class TYPE>
154constexpr bool is_implicit_lifetime_v = is_implicit_lifetime<TYPE>::value;
156} // namespace details
157} // namespace vecmem
std::true_type is_implicit_lifetime
Type trait that indicates whether a given type is an implicit lifetime type.
Definition type_traits.hpp:150
std::is_convertible< typename std::iterator_traits< iterator_type >::value_type, value_type > is_iterator_of
Helper trait for identifying input iterators.
Definition type_traits.hpp:29
auto max(T &&t)
Find the maximum of a variadic number of elements, terminal function.
Definition type_traits.hpp:101
Main namespace for the vecmem classes/functions.
Definition atomic_ref.hpp:16
std::vector< T, vecmem::polymorphic_allocator< T > > vector
Alias type for vectors with our polymorphic allocator.
Definition vector.hpp:35
Implementation for std::conjunction.
Definition type_traits.hpp:53
Implementation for std::disjunction.
Definition type_traits.hpp:72
Helper trait for detecting when a type is a non-const version of another.
Definition type_traits.hpp:37
Implementation for std::negation.
Definition type_traits.hpp:91