std::experimental::pmr::resource_adaptor (3) Linux Manual Page
std::experimental::pmr::resource_adaptor – std::experimental::pmr::resource_adaptor Synopsis Defined in header <experimental/memory_resource> template < class Alloc > class resource_adaptor_imp : public memory_resource; // for exposition only template <class Allocator> (library fundamentals TS) using resource_adaptor = resource_adaptor_imp< typename std::allocator_traits<Allocator>:: template rebind_alloc<char>>; The alias template resource_adaptor adapts the allocator type Allocator with a memory_resource interface. The allocator is rebound to a…
