vecmem 1.14.0
Loading...
Searching...
No Matches
array.ipp
1/* VecMem project, part of the ACTS project (R&D line)
2 *
3 * (c) 2021 CERN for the benefit of the ACTS project
4 *
5 * Mozilla Public License Version 2.0
6 */
7#pragma once
8
9#include "vecmem/memory/unique_ptr.hpp"
10
11// System include(s).
12#include <algorithm>
13#include <memory>
14#include <stdexcept>
15#include <string>
16
17namespace vecmem {
18template <typename T, std::size_t N>
19array<T, N>::array(memory_resource& resource)
20 : m_size(N), m_memory(vecmem::make_unique_obj<T[]>(resource, m_size)) {
21
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");
25}
26
27template <typename T, std::size_t N>
28array<T, N>::array(memory_resource& resource, size_type size)
29 : m_size(size), m_memory(vecmem::make_unique_obj<T[]>(resource, m_size)) {
30
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");
34}
35
36template <typename T, std::size_t N>
38
39 if (pos >= m_size) {
40 throw std::out_of_range("Requested element " + std::to_string(pos) +
41 " from a " + std::to_string(m_size) +
42 " sized vecmem::array");
43 }
44 return m_memory.get()[pos];
45}
46
47template <typename T, std::size_t N>
49
50 if (pos >= m_size) {
51 throw std::out_of_range("Requested element " + std::to_string(pos) +
52 " from a " + std::to_string(m_size) +
53 " sized vecmem::array");
54 }
55 return m_memory.get()[pos];
56}
57
58template <typename T, std::size_t N>
60
61 return m_memory.get()[pos];
62}
63
64template <typename T, std::size_t N>
66
67 return m_memory.get()[pos];
68}
69
70template <typename T, std::size_t N>
72
73 if (m_size == 0) {
74 throw std::out_of_range(
75 "Called vecmem::array::front() on an empty "
76 "array");
77 }
78 return (m_memory[0]);
79}
80
81template <typename T, std::size_t N>
83
84 if (m_size == 0) {
85 throw std::out_of_range(
86 "Called vecmem::array::front() on an empty "
87 "array");
88 }
89 return (*m_memory);
90}
91
92template <typename T, std::size_t N>
94
95 if (m_size == 0) {
96 throw std::out_of_range(
97 "Called vecmem::array::back() on an empty "
98 "array");
99 }
100 return m_memory.get()[m_size - 1];
101}
102
103template <typename T, std::size_t N>
105
106 if (m_size == 0) {
107 throw std::out_of_range(
108 "Called vecmem::array::back() on an empty "
109 "array");
110 }
111 return m_memory.get()[m_size - 1];
112}
113
114template <typename T, std::size_t N>
116
117 return m_memory.get();
118}
119
120template <typename T, std::size_t N>
122
123 return m_memory.get();
124}
125
126template <typename T, std::size_t N>
128
129 return m_memory.get();
130}
131
132template <typename T, std::size_t N>
134
135 return m_memory.get();
136}
137
138template <typename T, std::size_t N>
140
141 return m_memory.get();
142}
143
144template <typename T, std::size_t N>
146
147 return (m_memory.get() + m_size);
148}
149
150template <typename T, std::size_t N>
152
153 return (m_memory.get() + m_size);
154}
155
156template <typename T, std::size_t N>
158
159 return (m_memory.get() + m_size);
160}
161
162template <typename T, std::size_t N>
164
165 return reverse_iterator(end());
166}
167
168template <typename T, std::size_t N>
173
174template <typename T, std::size_t N>
179
180template <typename T, std::size_t N>
182
183 return reverse_iterator(begin());
184}
185
186template <typename T, std::size_t N>
191
192template <typename T, std::size_t N>
197
198template <typename T, std::size_t N>
200
201 return (m_size == 0);
202}
203
204template <typename T, std::size_t N>
206
207 return m_size;
208}
209
210template <typename T, std::size_t N>
212
213 std::fill(begin(), end(), value);
214}
215
216template <typename T, std::size_t N>
218
219 return {static_cast<typename data::vector_view<T>::size_type>(a.size()),
220 a.data()};
221}
222
223template <typename T, std::size_t N>
225
226 return {
228 a.data()};
229}
230
231} // namespace vecmem
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