Created on 2021-08-14.00:00:00 last changed 12 months ago
Proposed resolution:
This wording is relative to N4892.
Modify [range.iota.iterator] as indicated:
friend constexpr iterator operator+(iterator i, difference_type n) requires advanceable<W>;-20- Effects: Equivalent to:
returni += n; return i;friend constexpr iterator operator+(difference_type n, iterator i) requires advanceable<W>;-21- Effects: Equivalent to: return i + n;
friend constexpr iterator operator-(iterator i, difference_type n) requires advanceable<W>;-22- Effects: Equivalent to:
returni -= n; return i;
[ 2021-10-14 Approved at October 2021 virtual plenary. Status changed: Voting → WP. ]
[ 2021-08-20; Reflector poll ]
Set status to Tentatively Ready after six votes in favour during reflector poll.
iota_view's iterator's operator+ could avoid a copy construct by doing "i += n; return i" rather than "return i += n;" as seen in [range.iota.iterator].
This is what libc++ has implemented and shipped, even though it may not technically be conforming (if a program asserted the number of copies, for example). It might be good to update this operator and the minus operator accordingly.History | |||
---|---|---|---|
Date | User | Action | Args |
2023-11-22 15:47:43 | admin | set | status: wp -> c++23 |
2021-10-14 09:56:08 | admin | set | messages: + msg12137 |
2021-10-14 09:56:08 | admin | set | status: voting -> wp |
2021-09-29 12:57:28 | admin | set | status: ready -> voting |
2021-08-20 17:16:53 | admin | set | messages: + msg12004 |
2021-08-20 17:16:53 | admin | set | status: new -> ready |
2021-08-14 20:06:41 | admin | set | messages: + msg11987 |
2021-08-14 00:00:00 | admin | create |