std::scoped_allocator_adaptor<OuterAlloc,InnerAlloc...>::allocate
Min standard notice:
Header: <scoped_allocator>
Uses the outer allocator to allocate uninitialized storage.
# Declarations
pointer allocate( size_type n );
(since C++11)
pointer allocate( size_type n, const_void_pointer hint );
(since C++11)
# Parameters
n: the number of objects to allocate storage forhint: pointer to a nearby memory location
# Return value
The pointer to the allocated storage.