vecmem 1.14.0
Loading...
Searching...
No Matches
vector.hpp
1/* VecMem project, part of the ACTS project (R&D line)
2 *
3 * (c) 2021-2023 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/memory/polymorphic_allocator.hpp"
12
13// System include(s).
14#include <vector>
15
23namespace vecmem {
34template <typename T>
35using vector = std::vector<T, vecmem::polymorphic_allocator<T>>;
36
38template <typename TYPE, typename ALLOC>
39VECMEM_HOST data::vector_view<TYPE> get_data(std::vector<TYPE, ALLOC>& vec);
40
42template <typename TYPE, typename ALLOC>
44 const std::vector<TYPE, ALLOC>& vec);
45
46} // namespace vecmem
47
48// Include the implementation.
49#include "vecmem/containers/impl/vector.ipp"
Class holding data about a 1 dimensional vector/array.
Definition vector_view.hpp:38
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
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