GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::pmr::polymorphic_allocator::allocate_bytes(3) C++ Standard Libary std::pmr::polymorphic_allocator::allocate_bytes(3)

std::pmr::polymorphic_allocator::allocate_bytes - std::pmr::polymorphic_allocator::allocate_bytes


[[nodiscard]] void* allocate_bytes( std::size_t nbytes, (since C++20)
std::size_t alignment = alignof(std::max_align_t) );


Allocates nbytes bytes of storage at specified alignment alignment using the
underlying memory resource. Equivalent to return resource()->allocate(nbytes,
alignment);.


nbytes - the number of bytes to allocate
alignment - the alignment to use


A pointer to the allocated storage.


This function was introduced for use with the fully-specialized allocator
std::pmr::polymorphic_allocator<>, but it may be useful in any specialization.


The return type is void* (rather than, e.g., std::byte*) to support conversion to an
arbitrary pointer type U* by static_cast<U*>.


May throw any exceptions thrown by the call to resource()->allocate.


allocate_object Allocates raw memory suitable for an object or an array
(C++20) (public member function)
new_object Allocates and constructs an object
(C++20) (public member function)
allocate Allocate memory
(public member function)
allocate allocates uninitialized storage using the allocator
[static] (public static member function of std::allocator_traits<Alloc>)
allocate allocates memory
(public member function of std::pmr::memory_resource)

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.