W3cubDocs

/C++

std::pmr::polymorphic_allocator::allocate

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)

© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/memory/polymorphic_allocator/allocate