Re: [PATCH v3] libstdc++: Add P1206R7 range operations to std::deque [PR111055]

2025-03-25 Thread Jonathan Wakely
On 25/03/25 13:30 +0100, Tomasz Kamiński wrote: This is another piece of P1206R7, adding from_range constructor, append_range, prepend_range, insert_range, and assign_range members to std::deque. For append_front of input non-sized range, we are emplacing element at the front and then reverse i

[PATCH v3] libstdc++: Add P1206R7 range operations to std::deque [PR111055]

2025-03-25 Thread Tomasz Kamiński
This is another piece of P1206R7, adding from_range constructor, append_range, prepend_range, insert_range, and assign_range members to std::deque. For append_front of input non-sized range, we are emplacing element at the front and then reverse inserted elements. This does not existing elements,