10#include "vecmem/containers/data/vector_view.hpp"
11#include "vecmem/containers/details/reverse_iterator.hpp"
12#include "vecmem/memory/memory_resource.hpp"
13#include "vecmem/memory/unique_ptr.hpp"
14#include "vecmem/utils/types.hpp"
25static constexpr std::size_t array_invalid_size =
static_cast<std::size_t
>(-1);
40template <
typename T, std::
size_t N = details::array_inval
id_size>
81 static_assert(std::is_default_constructible<value_type>::value,
82 "vecmem::array can only handle default-constructible "
92 explicit array(memory_resource& resource);
177 bool empty() const noexcept;
200template <typename T, std::
size_t N>
204template <typename T, std::
size_t N>
210#include "vecmem/containers/impl/array.ipp"
Array with a fixed size, chosen during runtime.
Definition array.hpp:41
reverse_iterator rbegin()
Get a reverse iterator to the last element of the array (non-const)
Definition array.ipp:163
vecmem::details::reverse_iterator< const_iterator > const_reverse_iterator
Constant reverse iterator type.
Definition array.hpp:73
const_pointer const_iterator
Constant forward iterator type.
Definition array.hpp:67
reference back()
Access the last element of the array (non-const)
Definition array.ipp:93
const_reverse_iterator crbegin() const
Get a reverse iterator to the last element of the array (const)
Definition array.ipp:175
reference operator[](size_type pos)
Access one element in the array (non-const)
Definition array.ipp:59
reverse_iterator rend()
Get a reverse iterator to the element preceeding the first element of the array (non-const)
Definition array.ipp:181
~array()=default
Destructor.
vecmem::details::reverse_iterator< iterator > reverse_iterator
Reverse iterator type.
Definition array.hpp:70
std::size_t size_type
Size type for the array.
Definition array.hpp:50
reference front()
Access the first element in the array (non-const)
Definition array.ipp:71
bool empty() const noexcept
Check whether the array has no elements.
Definition array.ipp:199
iterator end()
Get an iterator to the element following the last element of the array (non-const)
Definition array.ipp:145
const_iterator cbegin() const
Get an iterator to the first element of the array (const)
Definition array.ipp:139
const_iterator cend() const
Get an iterator to the element following the last element of the array (const)
Definition array.ipp:157
T value_type
Type of the array elements.
Definition array.hpp:48
void fill(const_reference value)
Assign the specified value to all elements of the array.
Definition array.ipp:211
value_type * pointer
Value pointer type.
Definition array.hpp:60
iterator begin()
Get an iterator to the first element of the array (non-const)
Definition array.ipp:127
std::ptrdiff_t difference_type
Pointer difference type.
Definition array.hpp:52
const_reverse_iterator crend() const
Get a reverse iterator to the element preceeding the first element of the array (const)
Definition array.ipp:193
value_type & reference
Value reference type.
Definition array.hpp:55
size_type size() const noexcept
Get the number of elements in the array.
Definition array.ipp:205
pointer data()
Access a pointer to the underlying memory block (non-const)
Definition array.ipp:115
pointer iterator
Forward iterator type.
Definition array.hpp:65
const value_type * const_pointer
Constant value pointer type.
Definition array.hpp:62
const value_type & const_reference
Constant value reference type.
Definition array.hpp:57
reference at(size_type pos)
Access one element of the array (non-const)
Definition array.ipp:37
Type mimicking std::reverse_iterator.
Definition reverse_iterator.hpp:25
Main namespace for the vecmem classes/functions.
Definition atomic_ref.hpp:16
std::unique_ptr< T, details::unique_obj_deleter< T > > unique_obj_ptr
A unique pointer type for non-trivial objects.
Definition unique_ptr.hpp:51
VECMEM_HOST data::vector_view< T > get_data(array< T, N > &a)
Helper function creating a vecmem::data::vector_view object.
Definition array.ipp:217