27template <
typename iterator_type,
typename value_type>
29 typename std::iterator_traits<iterator_type>::value_type, value_type>;
36template <
typename CTYPE,
typename NCTYPE>
38 static constexpr bool value =
false;
41template <
typename TYPE>
43 static constexpr bool value =
true;
58template <
class B1,
class...
Bn>
60 : std::conditional_t<bool(B1::value), conjunction<Bn...>, B1> {};
77template <
class B1,
class...
Bn>
79 : std::conditional_t<bool(B1::value), B1, disjunction<Bn...>> {};
91struct negation : std::integral_constant<bool, !bool(B::value)> {};
102 return std::forward<T>(
t);
111template <
typename T,
typename...
Ts>
113 return std::max(std::forward<T>(
t),
max(std::forward<Ts>(
ts)...));
129#if defined(__cpp_lib_is_implicit_lifetime) && \
130 __cpp_lib_is_implicit_lifetime >= 202302L
133#define VECMEM_HAVE_IS_IMPLICIT_LIFETIME
134#elif defined(__cpp_lib_is_aggregate) && __cpp_lib_is_aggregate >= 201703L
139 std::is_scalar<TYPE>, std::is_array<TYPE>, std::is_aggregate<TYPE>,
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
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