10#include "vecmem/containers/details/reverse_iterator.hpp"
11#include "vecmem/containers/details/static_vector_traits.hpp"
12#include "vecmem/utils/type_traits.hpp"
13#include "vecmem/utils/types.hpp"
29template <
typename TYPE, std::
size_t MAX_SIZE>
76 VECMEM_HOST_AND_DEVICE
79 VECMEM_HOST_AND_DEVICE
85 std::enable_if_t<details::is_iterator_of<InputIt, value_type>::value,
88 : m_size(0), m_elements() {
93 VECMEM_HOST_AND_DEVICE
97 VECMEM_HOST_AND_DEVICE
106 VECMEM_HOST_AND_DEVICE
109 VECMEM_HOST_AND_DEVICE
113 VECMEM_HOST_AND_DEVICE
116 VECMEM_HOST_AND_DEVICE
120 VECMEM_HOST_AND_DEVICE
123 VECMEM_HOST_AND_DEVICE
127 VECMEM_HOST_AND_DEVICE
130 VECMEM_HOST_AND_DEVICE
134 VECMEM_HOST_AND_DEVICE
137 VECMEM_HOST_AND_DEVICE
146 VECMEM_HOST_AND_DEVICE
151 std::enable_if_t<details::is_iterator_of<InputIt, value_type>::value,
162 construct(m_size++, *
itr);
167 VECMEM_HOST_AND_DEVICE
170 VECMEM_HOST_AND_DEVICE
175 std::enable_if_t<details::is_iterator_of<InputIt, value_type>::value,
181 auto id = element_id(
pos);
197 template <
typename...
Args>
200 template <
typename...
Args>
204 VECMEM_HOST_AND_DEVICE
208 VECMEM_HOST_AND_DEVICE
211 VECMEM_HOST_AND_DEVICE
214 VECMEM_HOST_AND_DEVICE
218 VECMEM_HOST_AND_DEVICE
221 VECMEM_HOST_AND_DEVICE
224 VECMEM_HOST_AND_DEVICE
233 VECMEM_HOST_AND_DEVICE
237 VECMEM_HOST_AND_DEVICE
241 VECMEM_HOST_AND_DEVICE
245 VECMEM_HOST_AND_DEVICE
248 VECMEM_HOST_AND_DEVICE
251 VECMEM_HOST_AND_DEVICE
255 VECMEM_HOST_AND_DEVICE
258 VECMEM_HOST_AND_DEVICE
261 VECMEM_HOST_AND_DEVICE
265 VECMEM_HOST_AND_DEVICE
269 VECMEM_HOST_AND_DEVICE
273 VECMEM_HOST_AND_DEVICE
282 VECMEM_HOST_AND_DEVICE
285 VECMEM_HOST_AND_DEVICE
288 VECMEM_HOST_AND_DEVICE
291 VECMEM_HOST_AND_DEVICE
294 VECMEM_HOST_AND_DEVICE
301 VECMEM_HOST_AND_DEVICE
304 VECMEM_HOST_AND_DEVICE
313 VECMEM_HOST_AND_DEVICE
326#include "vecmem/containers/impl/static_vector.ipp"
Type mimicking std::reverse_iterator.
Definition reverse_iterator.hpp:25
Class mimicking std::vector on top of a fixed sized array.
Definition static_vector.hpp:30
VECMEM_HOST_AND_DEVICE size_type capacity() const
Return the current (fixed) capacity of the vector.
Definition static_vector.ipp:447
VECMEM_HOST_AND_DEVICE void assign(size_type count, const_reference value)
Assign new values to the vector.
Definition static_vector.ipp:140
std::ptrdiff_t difference_type
Pointer difference type.
Definition static_vector.hpp:41
VECMEM_HOST_AND_DEVICE const_iterator cend() const
Return a constant forward iterator pointing at the end of the vector.
Definition static_vector.ipp:378
value_type * pointer
Value pointer type.
Definition static_vector.hpp:56
value_type & reference
Value reference type.
Definition static_vector.hpp:52
VECMEM_HOST_AND_DEVICE ~static_vector()
Destructor.
Definition static_vector.ipp:40
VECMEM_HOST_AND_DEVICE reference at(size_type pos)
Return a specific element of the vector in a "safe way" (non-const)
Definition static_vector.ipp:47
VECMEM_HOST_AND_DEVICE void assign(InputIt other_begin, InputIt other_end)
Assign new values to the vector.
Definition static_vector.hpp:153
VECMEM_HOST_AND_DEVICE void resize(std::size_t new_size)
Resize the vector.
Definition static_vector.ipp:315
VECMEM_HOST_AND_DEVICE bool empty() const
Check whether the vector is empty.
Definition static_vector.ipp:427
VECMEM_HOST_AND_DEVICE size_type size() const
Return the number of elements in the vector.
Definition static_vector.ipp:433
std::size_t size_type
Size type for the array.
Definition static_vector.hpp:39
VECMEM_HOST_AND_DEVICE iterator erase(const_iterator pos)
Remove one element from the vector.
Definition static_vector.ipp:252
VECMEM_HOST_AND_DEVICE static_vector()
Default constructor.
Definition static_vector.ipp:17
VECMEM_HOST_AND_DEVICE iterator begin()
Return a forward iterator pointing at the beginning of the vector.
Definition static_vector.ipp:345
VECMEM_HOST_AND_DEVICE reference operator[](size_type pos)
Return a specific element of the vector (non-const)
Definition static_vector.ipp:68
const value_type * const_pointer
Constant value pointer type.
Definition static_vector.hpp:58
VECMEM_HOST_AND_DEVICE void clear()
Clear the vector.
Definition static_vector.ipp:306
static constexpr size_type array_max_size
The maximal size of the vector.
Definition static_vector.hpp:44
VECMEM_HOST_AND_DEVICE const_reverse_iterator crend() const
Return a constant reverse iterator pointing at the beginning of the vector.
Definition static_vector.ipp:420
VECMEM_HOST_AND_DEVICE pointer data()
Access the underlying memory array (non-const)
Definition static_vector.ipp:127
VECMEM_HOST_AND_DEVICE reference emplace_back(Args &&... args)
Add a new element at the end of the vector.
VECMEM_HOST_AND_DEVICE static_vector(InputIt other_begin, InputIt other_end)
Construct a vector with values coming from a pair of iterators.
Definition static_vector.hpp:87
VECMEM_HOST_AND_DEVICE void push_back(const_reference value)
Add a new element at the end of the vector.
Definition static_vector.ipp:245
VECMEM_HOST_AND_DEVICE iterator emplace(const_iterator pos, Args &&... args)
Insert a new element into the vector.
vecmem::details::reverse_iterator< const_iterator > const_reverse_iterator
Constant reverse iterator type.
Definition static_vector.hpp:68
vecmem::details::reverse_iterator< iterator > reverse_iterator
Reverse iterator type.
Definition static_vector.hpp:65
VECMEM_HOST_AND_DEVICE iterator end()
Return a forward iterator pointing at the end of the vector.
Definition static_vector.ipp:365
iterator insert(const_iterator pos, InputIt other_begin, InputIt other_end)
Insert a list of elements into the vector.
Definition static_vector.hpp:177
details::static_vector_type< char, array_max_size *value_size >::type array_type
Type of the array holding the payload of the vector elements.
Definition static_vector.hpp:49
VECMEM_HOST_AND_DEVICE const_reverse_iterator crbegin() const
Return a constant reverse iterator pointing at the end of the vector.
Definition static_vector.ipp:399
VECMEM_HOST_AND_DEVICE reference back()
Return the last element of the vector (non-const)
Definition static_vector.ipp:106
const value_type & const_reference
Constant value reference type.
Definition static_vector.hpp:54
VECMEM_HOST_AND_DEVICE reverse_iterator rend()
Return a reverse iterator pointing at the beginning of the vector.
Definition static_vector.ipp:406
VECMEM_HOST_AND_DEVICE void reserve(size_type new_cap)
Reserve additional storage for the vector.
Definition static_vector.ipp:454
VECMEM_HOST_AND_DEVICE const_iterator cbegin() const
Return a constant forward iterator pointing at the beginning of the vector.
Definition static_vector.ipp:358
pointer iterator
Forward iterator type.
Definition static_vector.hpp:61
VECMEM_HOST_AND_DEVICE iterator insert(const_iterator pos, const_reference value)
Insert a new element into the vector.
Definition static_vector.ipp:159
static constexpr size_type value_size
The size of the vector elements.
Definition static_vector.hpp:46
VECMEM_HOST_AND_DEVICE reverse_iterator rbegin()
Return a reverse iterator pointing at the end of the vector.
Definition static_vector.ipp:385
VECMEM_HOST_AND_DEVICE size_type max_size() const
Return the maximum (fixed) number of elements in the vector.
Definition static_vector.ipp:440
TYPE value_type
Type of the array elements.
Definition static_vector.hpp:37
const_pointer const_iterator
Constant forward iterator type.
Definition static_vector.hpp:63
VECMEM_HOST_AND_DEVICE reference front()
Return the first element of the vector (non-const)
Definition static_vector.ipp:84
VECMEM_HOST_AND_DEVICE void pop_back()
Remove the last element of the vector.
Definition static_vector.ipp:300
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 type for an array in a static_vector with a given type and size.
Definition static_vector_traits.hpp:27