Namespaces
Variants
Views
Actions

std::pmr::polymorphic_allocator<T>::allocate

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

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

Contents

[edit] Parameters

n - the number of objects to allocate storage for

[edit] Return value

A pointer to the allocated storage.

[edit] Exceptions

Throws std::length_error if n > SIZE_MAX / sizeof(T); may also any exceptions thrown by the call to resource()->allocate.

[edit] See also

Allocate raw aligned memory from the underlying resource
(public member function) [edit]
Allocates raw memory suitable for an object or an array
(public member function) [edit]
Allocates and constructs an object
(public member function) [edit]
[static]
allocates uninitialized storage using the allocator
(public static member function of std::allocator_traits<Alloc>) [edit]
allocates memory
(public member function of std::pmr::memory_resource) [edit]