12#include "vecmem/containers/details/reverse_iterator.hpp"
13#include "vecmem/containers/details/static_array_traits.hpp"
14#include "vecmem/utils/types.hpp"
32template <
typename T, std::
size_t N>
105 VECMEM_HOST_AND_DEVICE
116 VECMEM_HOST_AND_DEVICE
125 template <std::size_t
I,
126 std::enable_if_t<I<N, bool> =
true>
145 VECMEM_HOST_AND_DEVICE
153 VECMEM_HOST_AND_DEVICE
161 VECMEM_HOST_AND_DEVICE
169 VECMEM_HOST_AND_DEVICE
177 VECMEM_HOST_AND_DEVICE
185 VECMEM_HOST_AND_DEVICE
194 VECMEM_HOST_AND_DEVICE
198 VECMEM_HOST_AND_DEVICE
202 VECMEM_HOST_AND_DEVICE
206 VECMEM_HOST_AND_DEVICE
209 VECMEM_HOST_AND_DEVICE
212 VECMEM_HOST_AND_DEVICE
216 VECMEM_HOST_AND_DEVICE
219 VECMEM_HOST_AND_DEVICE
222 VECMEM_HOST_AND_DEVICE
226 VECMEM_HOST_AND_DEVICE
230 VECMEM_HOST_AND_DEVICE
234 VECMEM_HOST_AND_DEVICE
243 VECMEM_HOST_AND_DEVICE
246 VECMEM_HOST_AND_DEVICE
249 VECMEM_HOST_AND_DEVICE
258 VECMEM_HOST_AND_DEVICE
290#include "impl/static_array.ipp"
Type mimicking std::reverse_iterator.
Definition reverse_iterator.hpp:25
Main namespace for the vecmem classes/functions.
Definition atomic_ref.hpp:16
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
Simple statically-sized array-like class designed for use in device code.
Definition static_array.hpp:33
const_pointer const_iterator
Constant forward iterator type.
Definition static_array.hpp:57
value_type * pointer
Value pointer type.
Definition static_array.hpp:50
value_type & reference
Value reference type.
Definition static_array.hpp:46
const value_type & const_reference
Constant value reference type.
Definition static_array.hpp:48
const value_type * const_pointer
Constant value pointer type.
Definition static_array.hpp:52
std::ptrdiff_t difference_type
Pointer difference type.
Definition static_array.hpp:43
T value_type
Type of the array elements.
Definition static_array.hpp:39
VECMEM_HOST_AND_DEVICE constexpr reference operator[](size_type i)
Accessor method.
Definition static_array.ipp:50
std::size_t size_type
Size type for the array.
Definition static_array.hpp:41
pointer iterator
Forward iterator type.
Definition static_array.hpp:55
VECMEM_HOST constexpr reference at(size_type i)
Bounds-checked accessor method.
Definition static_array.ipp:22