Created on 2022-06-20.00:00:00 last changed 12 months ago
Proposed resolution:
This wording is relative to N4910.
Modify [priqueue.members] as indicated:
template<container-compatible-range<T> R> void push_range(R&& rg);-3- Effects: Inserts all elements of rg in c via c.append_range(std::forward<R>(rg)) if that is a valid expression, or ranges::copy(rg, back_inserter(c)) otherwise. Then restores the heap property as if by make_heap(c.begin(), c.end(), comp).
-4- Postconditions: is_heap(c.begin(), c.end(), comp) is true.
[ 2023-02-13 Approved at February 2023 meeting in Issaquah. Status changed: Immediate → WP. ]
[ Issaquah 2023-02-08; LWG ]
Unanimous consent to move to Immediate.
[ 2022-07-08; Reflector poll ]
Set priority to 2 after reflector poll.
The push_range members of the queue ([queue.mod]) and stack ([stack.mod]) container adaptors are both specified as "Effects: Equivalent to c.append_range(std::forward<R>(rg)) if that is a valid expression, otherwise ranges::copy(rg, back_inserter(c)).". For priority_queue, however, we have instead ([priqueue.members]):
-3- Effects: Insert all elements of rg in c.
-4- Postconditions: is_heap(c.begin(), c.end(), comp) is true.
Since append_range isn't one of the operations required of the underlying container, "Insert all elements of rg" must be implemented via potentially less efficient means. It would be nice if this push_back could take advantage of append_range when it's available just as do the other two overloads.
History | |||
---|---|---|---|
Date | User | Action | Args |
2023-11-22 15:47:43 | admin | set | status: wp -> c++23 |
2023-02-13 11:31:32 | admin | set | messages: + msg13382 |
2023-02-13 11:31:32 | admin | set | status: immediate -> wp |
2023-02-08 23:17:32 | admin | set | messages: + msg13294 |
2023-02-08 23:17:32 | admin | set | status: new -> immediate |
2022-07-08 20:04:38 | admin | set | messages: + msg12563 |
2022-06-26 08:03:02 | admin | set | messages: + msg12535 |
2022-06-20 00:00:00 | admin | create |