vecmem 1.14.0
Loading...
Searching...
No Matches
vector_view.hpp
1/* VecMem project, part of the ACTS project (R&D line)
2 *
3 * (c) 2021-2025 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/utils/type_traits.hpp"
11#include "vecmem/utils/types.hpp"
12
13// System include(s).
14#include <cstddef>
15#include <type_traits>
16
17namespace vecmem {
18
25namespace data {
26
37template <typename TYPE>
39
41 static_assert(
42 !std::is_same<typename std::remove_cv<TYPE>::type, bool>::value,
43 "bool is not supported in VecMem containers");
44
45public:
47 using size_type = unsigned int;
50 std::conditional_t<std::is_const<TYPE>::value,
51 std::add_pointer_t<std::add_const_t<size_type>>,
52 std::add_pointer_t<size_type>>;
54 using pointer = std::add_pointer_t<TYPE>;
55
57 vector_view() = default;
59 VECMEM_HOST_AND_DEVICE
62 VECMEM_HOST_AND_DEVICE
64
73 template <typename OTHERTYPE,
74 std::enable_if_t<details::is_same_nc<TYPE, OTHERTYPE>::value,
75 bool> = true>
76 VECMEM_HOST_AND_DEVICE vector_view(const vector_view<OTHERTYPE>& parent);
77
82 template <typename OTHERTYPE,
83 std::enable_if_t<details::is_same_nc<TYPE, OTHERTYPE>::value,
84 bool> = true>
85 VECMEM_HOST_AND_DEVICE vector_view& operator=(
87
90 template <typename OTHERTYPE,
91 std::enable_if_t<std::is_same<std::remove_cv_t<TYPE>,
92 std::remove_cv_t<OTHERTYPE>>::value,
93 bool> = true>
94 VECMEM_HOST_AND_DEVICE bool operator==(
95 const vector_view<OTHERTYPE>& rhs) const;
96
98 template <typename OTHERTYPE,
99 std::enable_if_t<std::is_same<std::remove_cv_t<TYPE>,
100 std::remove_cv_t<OTHERTYPE>>::value,
101 bool> = true>
102 VECMEM_HOST_AND_DEVICE bool operator!=(
103 const vector_view<OTHERTYPE>& rhs) const;
104
106 VECMEM_HOST_AND_DEVICE
107 size_type size() const;
109 VECMEM_HOST_AND_DEVICE
110 size_type capacity() const;
111
113 VECMEM_HOST_AND_DEVICE
114 size_pointer size_ptr() const;
115
117 VECMEM_HOST_AND_DEVICE
118 pointer ptr() const;
119
120private:
122 size_type m_capacity;
124 size_pointer m_size;
126 pointer m_ptr;
127
128}; // struct vector_view
129
130} // namespace data
131} // namespace vecmem
132
133// Include the implementation.
134#include "vecmem/containers/impl/vector_view.ipp"
Class holding data about a 1 dimensional vector/array.
Definition vector_view.hpp:38
VECMEM_HOST_AND_DEVICE vector_view & operator=(const vector_view< OTHERTYPE > &rhs)
Copy from a "slightly different" vecmem::details::vector_view object.
std::add_pointer_t< TYPE > pointer
Pointer type to the array.
Definition vector_view.hpp:54
VECMEM_HOST_AND_DEVICE bool operator!=(const vector_view< OTHERTYPE > &rhs) const
Inequality check. Simply based on operator==.
Definition vector_view.ipp:65
VECMEM_HOST_AND_DEVICE pointer ptr() const
Get a pointer to the vector elements.
Definition vector_view.ipp:91
unsigned int size_type
We cannot use boolean types.
Definition vector_view.hpp:47
vector_view()=default
Default constructor.
VECMEM_HOST_AND_DEVICE bool operator==(const vector_view< OTHERTYPE > &rhs) const
Equality check.
Definition vector_view.ipp:53
VECMEM_HOST_AND_DEVICE size_pointer size_ptr() const
Get a pointer to the size of the vector.
Definition vector_view.ipp:84
std::conditional_t< std::is_const< TYPE >::value, std::add_pointer_t< std::add_const_t< size_type > >, std::add_pointer_t< size_type > > size_pointer
Pointer type to the size of the array.
Definition vector_view.hpp:52
VECMEM_HOST_AND_DEVICE size_type capacity() const
Get the maximum capacity of the vector.
Definition vector_view.ipp:78
VECMEM_HOST_AND_DEVICE size_type size() const
Get the size of the vector.
Definition vector_view.ipp:72
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