std::experimental::pmr::polymorphic_allocator<T>::allocate
From cppreference.com
< cpp | experimental | polymorphic allocator
C++
Library fundamentals
Polymorphic allocator library
Convenience aliases for containers using polymorphic_allocator | ||||
| Memory resource classes | ||||
| Global memory resources | ||||
| Type-erased allocator support for existing classes | ||||
std::experimental::pmr::polymorphic_allocator
| Member functions | ||||
polymorphic_allocator::allocate | ||||
| Non-member functions | ||||
| T* allocate( std::size_t n ); |
(library fundamentals TS) | |
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));.
[edit] Parameters
| n | - | the number of objects to allocate storage for |
[edit] Return value
A pointer to the allocated storage.
[edit] See also
| [static] |
allocates uninitialized storage using the allocator (public static member function of std::allocator_traits<Alloc>) [edit]
|
| deallocates memory (public member function of std::experimental::pmr::memory_resource) [edit]
|