10#include "vecmem/containers/data/buffer_type.hpp"
11#include "vecmem/containers/data/vector_view.hpp"
12#include "vecmem/memory/memory_resource.hpp"
13#include "vecmem/memory/unique_ptr.hpp"
28template <
typename TYPE>
45 static_assert(std::is_trivially_destructible<TYPE>::value,
46 "vecmem::data::vector_buffer can not handle types with "
47 "custom destructors");
81#include "vecmem/containers/impl/vector_buffer.ipp"
Object owning the data held by it.
Definition vector_buffer.hpp:29
vector_buffer()
Make sure that the template type does not have a custom destructor.
Definition vector_buffer.ipp:24
typename base_type::pointer pointer
Pointer type definition coming from the base class.
Definition vector_buffer.hpp:39
typename base_type::size_type size_type
Size type definition coming from the base class.
Definition vector_buffer.hpp:35
vector_buffer(vector_buffer &&) noexcept=default
Move constructor.
typename base_type::size_pointer size_pointer
Size pointer type definition coming from the base class.
Definition vector_buffer.hpp:37
Class holding data about a 1 dimensional vector/array.
Definition vector_view.hpp:38
std::add_pointer_t< TYPE > pointer
Pointer type to the array.
Definition vector_view.hpp:54
unsigned int size_type
We cannot use boolean types.
Definition vector_view.hpp:47
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
buffer_type
"Overall type" for a buffer object
Definition buffer_type.hpp:13
@ fixed_size
The buffer has a fixed number of elements.
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
std::unique_ptr< T, details::unique_alloc_deleter< T > > unique_alloc_ptr
A unique pointer type for trivial types.
Definition unique_ptr.hpp:69
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