std::make_obj_using_allocator

Header: <memory>

Creates an object of the given type T by means of uses-allocator construction.

# Declarations

template< class T, class Alloc, class... Args >
constexpr T make_obj_using_allocator( const Alloc& alloc, Args&&... args );

(since C++20)

# Parameters

# Return value

The newly-created object of type T.

# Example

This section is incompleteReason: no example

# See also