std::make_obj_using_allocator
From cppreference.com
Defined in header <memory>
|
||
template< class T, class Alloc, class... Args > constexpr T make_obj_using_allocator( const Alloc& alloc, Args&&... args ); |
(since C++20) | |
Creates an object of the given type T
by means of uses-allocator construction.
Equivalent to
return std::make_from_tuple<T>(