<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="">= Background The first version of allocators in C++ defined the named requirement {req_Allocator}, and made each standard container a class template parameterized on the allocator type. For example, here is the declaration for {std_vector}:</string>
    <string name="">The standard allocator is {req_DefaultConstructible}. To support stateful allocators, containers provide additional constructor overloads taking an allocator instance parameter.</string>
    <string name="">While the system works, it has some usability problems:</string>
    <string name="">The container must be a class template.</string>
    <string name="">Parameterizing the allocator on the element type is clumsy.</string>
    <string name="">The system of allocator traits, especially POCCA and POCMA,</string>
    <string name="">is complicated and error-prone.</string>
    <string name="">Allocator-based programs which use multiple allocator types incur a greater number of function template instantiations and are generally slower to compile because class template function definitions must be visible at all call sites.</string>
    <string name="">Polymorphic Allocators</string>
    <string name="">{cpp}17 improves the allocator model by representing the low-level allocation operation with an abstract interface called {ref_memory_resource}, which is not parameterized on the element type, and has no traits:</string>
    <string name="">The class template {ref_polymorphic_allocator} wraps a {ref_memory_resource} pointer and meets the requirements of {req_Allocator}, allowing it to be used where an allocator is expected. The standard provides type aliases using the polymorphic allocator for standard containers:</string>
    <string name="">A polymorphic allocator constructs with a pointer to a memory resource:</string>
    <string name="">The memory resource is passed by pointer; ownership is not transferred. The caller is responsible for extending the lifetime of the memory resource until the last container which is using it goes out of scope, otherwise the behavior is undefined. Sometimes this is the correct model, such as in this example which uses a monotonic resource constructed from a local stack buffer:</string>
    <string name="">However, sometimes shared ownership is needed. Specifically, that the lifetime extension of the memory resource should be automatic. For example, if a library wants to return a container which owns an instance of the library\'s custom memory resource as shown below:</string>
    <string name="">This can be worked around by declaring the container to use a custom allocator (perhaps using a `std::shared_ptr&lt; std::pmr::memory_resource &gt;` as a data member). This hinders library composition; every library now exports unique, incompatible container types. A raw memory resource pointer is also easy to misuse:</string>
    <string name="">Workarounds for this problem are worse than the problem itself. The library could return a pair with the vector and `std::unique_ptr&lt;std::pmr::memory_resource&gt;` which the caller must manage. Or the library could change its function signatures to accept a {ref_memory_resource}``*`` provided by the caller, where the library also makes public the desired memory resources (`my_resource` above).</string>
    <string name="">Problem Statement</string>
    <string name="">We would like an allocator model using a single type `T` with the following properties:</string>
    <string name="">`T` is not a class template</string>
    <string name="">`T` references a {ref_memory_resource}</string>
    <string name="">`T` supports both reference semantics or shared ownership</string>
    <string name="">`T` interoperates with code already using `std::pmr`</string>
    <string name="">Boost.JSON solves this problem by introducing a new smart pointer called &lt;&lt;ref_storage_ptr&gt;&gt; which builds upon {cpp}17\'s memory allocation interfaces, accomplishing the goals above. As a result, libraries which use this type compose more easily and enjoy faster compilation, as member functions for containers which use the type can be defined out-of-line.</string>
</resources>
