std::pmr::monotonic_buffer_resource::do_allocate
Min standard notice:
Allocates storage.
# Declarations
virtual void* do_allocate( std::size_t bytes, std::size_t alignment );
(since C++17)
# Return value
A pointer to allocated storage of at least bytes bytes in size, aligned to the specified alignment if such alignment is supported, and to alignof(std::max_align_t) otherwise.