std::pmr::polymorphic_allocator::allocate_bytes (3) Linux Manual Page
std::pmr::polymorphic_allocator<T>::allocate_bytes – std::pmr::polymorphic_allocator<T>::allocate_bytes Synopsis 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); Parameters nbytes – the number of bytes to allocate alignment – the alignment to use Return value A pointer to the allocated storage….
