19 m_host_ptr(host_ptr !=
nullptr ? host_ptr : ptr) {}
23 std::enable_if_t<details::is_same_nc<T, OTHERTYPE>::value,
bool> >
26 : m_size(parent.size()),
35 parent.host_ptr()))) {}
39 std::enable_if_t<details::is_same_nc<T, OTHERTYPE>::value,
bool> >
46 m_ptr =
reinterpret_cast<pointer
>(
48 m_host_ptr =
reinterpret_cast<pointer
>(
58 std::enable_if_t<std::is_same<std::remove_cv_t<T>,
59 std::remove_cv_t<OTHERTYPE> >::value,
64 return ((m_size ==
rhs.size()) &&
65 (
static_cast<const void*
>(m_ptr) ==
66 static_cast<const void*
>(
rhs.ptr())) &&
67 (
static_cast<const void*
>(m_host_ptr) ==
68 static_cast<const void*
>(
rhs.host_ptr())));
73 std::enable_if_t<std::is_same<std::remove_cv_t<T>,
74 std::remove_cv_t<OTHERTYPE> >::value,
79 return !(*
this ==
rhs);
A view for jagged vectors.
Definition jagged_vector_view.hpp:44
VECMEM_HOST_AND_DEVICE pointer host_ptr() const
Access the host accessible array describing the inner vectors.
Definition jagged_vector_view.ipp:102
VECMEM_HOST_AND_DEVICE jagged_vector_view & operator=(const jagged_vector_view< OTHERTYPE > &rhs)
Assignment operator from a "slightly different" object.
std::size_t size_type
We cannot use boolean types.
Definition jagged_vector_view.hpp:52
std::add_pointer_t< value_type > pointer
Pointer type to the jagged array.
Definition jagged_vector_view.hpp:56
VECMEM_HOST_AND_DEVICE bool operator!=(const jagged_vector_view< OTHERTYPE > &rhs) const
Inequality check. Simply based on operator==.
Definition jagged_vector_view.ipp:76
jagged_vector_view()=default
Default constructor.
VECMEM_HOST_AND_DEVICE size_type capacity() const
Get the maximum capacity of the "outer" vector.
Definition jagged_vector_view.ipp:89
VECMEM_HOST_AND_DEVICE bool operator==(const jagged_vector_view< OTHERTYPE > &rhs) const
Equality check.
Definition jagged_vector_view.ipp:61
VECMEM_HOST_AND_DEVICE pointer ptr() const
Get a pointer to the vector elements.
Definition jagged_vector_view.ipp:96
VECMEM_HOST_AND_DEVICE size_type size() const
Get the "outer" size of the jagged vector.
Definition jagged_vector_view.ipp:83
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