std::make_obj_using_allocator
Min standard notice:
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
alloc: the allocator to useargs: the arguments to pass to T’s constructor
# Return value
The newly-created object of type T.
# Example
This section is incompleteReason: no example