vecmem 1.14.0
Loading...
Searching...
No Matches
array.hpp
1/* VecMem project, part of the ACTS project (R&D line)
2 *
3 * (c) 2021-2024 CERN for the benefit of the ACTS project
4 *
5 * Mozilla Public License Version 2.0
6 */
7#pragma once
8
9// Local include(s).
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"
15
16// System include(s).
17#include <cstddef>
18#include <memory>
19#include <type_traits>
20
21namespace vecmem {
22
23namespace details {
25static constexpr std::size_t array_invalid_size = static_cast<std::size_t>(-1);
26} // namespace details
27
40template <typename T, std::size_t N = details::array_invalid_size>
41class array {
42
43public:
46
48 typedef T value_type;
50 typedef std::size_t size_type;
52 typedef std::ptrdiff_t difference_type;
53
58
62 typedef const value_type* const_pointer;
63
68
74
76
79
81 static_assert(std::is_default_constructible<value_type>::value,
82 "vecmem::array can only handle default-constructible "
83 "types");
84
86
92 explicit array(memory_resource& resource);
93
99 array(memory_resource& resource, size_type size);
100
102 ~array() = default;
103
106
110 const_reference at(size_type pos) const;
111
116
120 const_reference front() const;
121
123 reference back();
125 const_reference back() const;
126
128 pointer data();
130 const_pointer data() const;
131
133
136
138 iterator begin();
140 const_iterator begin() const;
142 const_iterator cbegin() const;
143
146 iterator end();
149 const_iterator end() const;
152 const_iterator cend() const;
153
160
170
172
175
177 bool empty() const noexcept;
179 size_type size() const noexcept;
180
182
185
187 void fill(const_reference value);
188
190
191private:
193 size_type m_size;
195 vecmem::unique_obj_ptr<value_type[]> m_memory;
196
197}; // class array
198
200template <typename T, std::size_t N>
201VECMEM_HOST data::vector_view<T> get_data(array<T, N>& a);
202
204template <typename T, std::size_t N>
205VECMEM_HOST data::vector_view<const T> get_data(const array<T, N>& a);
206
207} // namespace vecmem
208
209// Include the implementation.
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