10#include "vecmem/edm/schema.hpp"
11#include "vecmem/utils/type_traits.hpp"
27template <
typename TYPE>
32template <
typename TYPE>
37template <
typename TYPE>
52 static constexpr bool value =
false;
55template <
typename TYPE>
57 static constexpr bool value =
true;
65 static constexpr bool value =
false;
68template <
typename TYPE>
70 static constexpr bool value =
true;
73template <
typename TYPE>
75 static constexpr bool value =
true;
83 static constexpr bool value =
false;
86template <
typename TYPE>
88 static constexpr bool value =
true;
99template <
typename TYPE1,
typename TYPE2>
101 static constexpr bool value =
false;
104template <
typename TYPE1,
typename TYPE2>
106 static constexpr bool value =
110template <
typename TYPE1,
typename TYPE2>
112 static constexpr bool value =
116template <
typename TYPE1,
typename TYPE2>
118 static constexpr bool value =
122template <
typename TYPE1,
typename TYPE2>
167 static constexpr bool value =
168 vecmem::details::disjunction_v<type::details::is_scalar<VARTYPES>...>;
185 static constexpr bool value =
186 vecmem::details::disjunction_v<type::details::is_vector<VARTYPES>...>;
203 static constexpr bool value = vecmem::details::disjunction_v<
209constexpr bool has_jagged_vector_v =
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
Helper trait for detecting when a type is a non-const version of another.
Definition type_traits.hpp:37
Technical base type for add_const<schema<VARTYPES...>>
Definition schema_traits.hpp:137
Technical base type for has_jagged_vector<schema<VARTYPES...>>
Definition schema_traits.hpp:195
Technical base type for has_scalar<schema<VARTYPES...>>
Definition schema_traits.hpp:159
Technical base type for has_vector<schema<VARTYPES...>>
Definition schema_traits.hpp:177
Meta type describing the "schema" of an SoA container.
Definition schema.hpp:46
Definition schema_traits.hpp:25
Definition schema_traits.hpp:82
Definition schema_traits.hpp:100
Definition schema_traits.hpp:51
Definition schema_traits.hpp:64
2D jagged vector variable
Definition schema.hpp:33
Scalar variable, one for a whole container.
Definition schema.hpp:19
1D vector variable
Definition schema.hpp:26