std::pmr::polymorphic_allocator::allocate

From cppreference.com
 
 
Dynamic memory management
Uninitialized storage
(C++17)
(deprecated since c++17)
(deprecated since c++17)
(deprecated since c++17)
Garbage collection support
Miscellaneous
(C++11)
(C++11)
C Library
Low level memory management
 
 
T* allocate( std::size_t n );
(since C++17)

Allocates storage for n objects of type T using the underlying memory resource. Equivalent to return static_cast<T*>(this->resource()->allocate(n * sizeof(T), alignof(T)));

Parameters

n - the number of objects to allocate storage for

Return value

A pointer to the allocated storage.

See also

[static]
allocates uninitialized storage using the allocator
(public static member function of std::allocator_traits)
allocates memory
(public member function of std::pmr::memory_resource)