vecmem 1.14.0
Loading...
Searching...
No Matches
static_vector_traits.hpp
1/* VecMem project, part of the ACTS project (R&D line)
2 *
3 * (c) 2021 CERN for the benefit of the ACTS project
4 *
5 * Mozilla Public License Version 2.0
6 */
7#pragma once
8
9// System include(s).
10#include <cstddef>
11
12namespace vecmem {
13
19namespace details {
20
26template <typename T, std::size_t size>
28 typedef T type[size];
29};
30
31template <typename T>
33 typedef T* type;
34};
35
36} // namespace details
37} // namespace vecmem
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
Helper type for an array in a static_vector with a given type and size.
Definition static_vector_traits.hpp:27