Title
What does it mean for a type to be "allocator aware"?
Status
new
Section
[container.alloc.reqmts]
Submitter
Alisdair Meredith

Created on 2023-08-14.00:00:00 last changed 8 months ago

Messages

Date: 2023-09-17.18:16:47

Trying to interpret the specification for allocator-aware containers, [container.alloc.reqmts].

P1 establishes that std::array is not an allocator-aware container, but all other containers in the standard are.

P2 then adds vocabulary, with ruling that if a container type X is not allocator-aware then the specification is as-if the allocator were std::allocator<T>. I cannot find a specification for allocator-aware, and do not believe we should treat this as a recursive definition, as the only standard container that would be affected would be std::array, which absolutely does not want to apply all the terms in this subclause.

It looks like we might mean types that do not have everything specified by the first sentence, such as an allocator_type member. Perhaps we want to say a container type X is allocator-aware using allocator A if […], and then that basic_string and containers that are not otherwise allocator aware are are treated as-if they were allocator-aware using std::allocator<typename X::value_type> (where value_type is already guaranteed to exist by the container requirements, [container.reqmts] p1).

History
Date User Action Args
2023-08-14 00:00:00admincreate