12template <
typename TYPE>
15 : m_capacity(size), m_size(
nullptr), m_ptr(ptr) {}
17template <
typename TYPE>
21 : m_capacity(capacity), m_size(size), m_ptr(ptr) {}
23template <
typename TYPE>
25 std::enable_if_t<details::is_same_nc<TYPE, OTHERTYPE>::value,
bool> >
28 : m_capacity(parent.capacity()),
29 m_size(parent.size_ptr()),
30 m_ptr(parent.ptr()) {}
32template <
typename TYPE>
34 std::enable_if_t<details::is_same_nc<TYPE, OTHERTYPE>::value,
bool> >
41 m_size =
rhs.size_ptr();
48template <
typename TYPE>
50 std::enable_if_t<std::is_same<std::remove_cv_t<TYPE>,
51 std::remove_cv_t<OTHERTYPE> >::value,
56 return ((m_capacity ==
rhs.capacity()) && (m_size ==
rhs.size_ptr()) &&
57 (m_ptr ==
rhs.ptr()));
60template <
typename TYPE>
62 std::enable_if_t<std::is_same<std::remove_cv_t<TYPE>,
63 std::remove_cv_t<OTHERTYPE> >::value,
68 return !(*
this ==
rhs);
71template <
typename TYPE>
74 return (m_size ==
nullptr ? m_capacity : *m_size);
77template <
typename TYPE>
83template <
typename TYPE>
90template <
typename TYPE>
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