9#include "vecmem/memory/unique_ptr.hpp"
18template <
typename T, std::
size_t N>
22 static_assert(
N != details::array_invalid_size,
23 "Can only use the 'compile time constructor' if a size "
24 "was provided as a template argument");
27template <
typename T, std::
size_t N>
31 static_assert(
N == details::array_invalid_size,
32 "Can only use the 'runtime constructor' if a size was not "
33 "provided as a template argument");
36template <
typename T, std::
size_t N>
40 throw std::out_of_range(
"Requested element " + std::to_string(
pos) +
41 " from a " + std::to_string(m_size) +
42 " sized vecmem::array");
44 return m_memory.get()[
pos];
47template <
typename T, std::
size_t N>
51 throw std::out_of_range(
"Requested element " + std::to_string(
pos) +
52 " from a " + std::to_string(m_size) +
53 " sized vecmem::array");
55 return m_memory.get()[
pos];
58template <
typename T, std::
size_t N>
61 return m_memory.get()[
pos];
64template <
typename T, std::
size_t N>
67 return m_memory.get()[
pos];
70template <
typename T, std::
size_t N>
74 throw std::out_of_range(
75 "Called vecmem::array::front() on an empty "
81template <
typename T, std::
size_t N>
85 throw std::out_of_range(
86 "Called vecmem::array::front() on an empty "
92template <
typename T, std::
size_t N>
96 throw std::out_of_range(
97 "Called vecmem::array::back() on an empty "
100 return m_memory.get()[m_size - 1];
103template <
typename T, std::
size_t N>
107 throw std::out_of_range(
108 "Called vecmem::array::back() on an empty "
111 return m_memory.get()[m_size - 1];
114template <
typename T, std::
size_t N>
117 return m_memory.get();
120template <
typename T, std::
size_t N>
123 return m_memory.get();
126template <
typename T, std::
size_t N>
129 return m_memory.get();
132template <
typename T, std::
size_t N>
135 return m_memory.get();
138template <
typename T, std::
size_t N>
141 return m_memory.get();
144template <
typename T, std::
size_t N>
147 return (m_memory.get() + m_size);
150template <
typename T, std::
size_t N>
153 return (m_memory.get() + m_size);
156template <
typename T, std::
size_t N>
159 return (m_memory.get() + m_size);
162template <
typename T, std::
size_t N>
168template <
typename T, std::
size_t N>
174template <
typename T, std::
size_t N>
180template <
typename T, std::
size_t N>
186template <
typename T, std::
size_t N>
192template <
typename T, std::
size_t N>
198template <
typename T, std::
size_t N>
201 return (m_size == 0);
204template <
typename T, std::
size_t N>
210template <
typename T, std::
size_t N>
213 std::fill(begin(), end(), value);
216template <
typename T, std::
size_t N>
223template <
typename T, std::
size_t N>
reverse_iterator rbegin()
Get a reverse iterator to the last element of the array (non-const)
Definition array.ipp:163
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
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
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
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
array(memory_resource &resource)
Make sure that the template type is default constructible.
Definition array.ipp:19
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
Class holding data about a 1 dimensional vector/array.
Definition vector_view.hpp:38
unsigned int size_type
We cannot use boolean types.
Definition vector_view.hpp:47
Type mimicking std::reverse_iterator.
Definition reverse_iterator.hpp:25
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
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
std::enable_if_t<!std::is_array_v< T >, unique_obj_ptr< T > > make_unique_obj(memory_resource &m, Args &&... a)
Create a unique object pointer to a newly constructed object.
Definition unique_ptr.hpp:90