vecmem 1.14.0
Loading...
Searching...
No Matches
aligned_multiple_placement.hpp
1/*
2 * VecMem project, part of the ACTS project (R&D line)
3 *
4 * (c) 2022-2024 CERN for the benefit of the ACTS project
5 *
6 * Mozilla Public License Version 2.0
7 */
8
9#pragma once
10
11// vecmem headers
12#include "vecmem/memory/unique_ptr.hpp"
13
14// Standard library headers
15#include <tuple>
16#include <type_traits>
17
18namespace vecmem {
19namespace details {
89template <typename... Ts, typename... Ps>
90std::tuple<vecmem::unique_alloc_ptr<char[]>, std::add_pointer_t<Ts>...>
91aligned_multiple_placement(vecmem::memory_resource &r, Ps &&... ps);
92} // namespace details
93} // namespace vecmem
94
95#include "vecmem/containers/impl/aligned_multiple_placement.ipp"
std::tuple< vecmem::unique_alloc_ptr< char[]>, std::add_pointer_t< Ts >... > aligned_multiple_placement(vecmem::memory_resource &r, Ps &&... ps)
Allocation of aligned arrays of given types.
Definition aligned_multiple_placement.ipp:137
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