std::experimental::pmr::polymorphic_allocator<T>::allocate
Min standard notice:
Allocates storage for n objects of type T using the underlying memory resource. Equivalent to
# Declarations
T* allocate( std::size_t n );
(library fundamentals TS)
# Parameters
n: the number of objects to allocate storage for
# Return value
A pointer to the allocated storage.