Created on 2023-03-27.00:00:00 last changed 17 months ago
Proposed resolution:
This wording is relative to n4944.
Modify [range.enumerate.iterator] as indicated:
[…]namespace std::ranges { template<view V> requires range-with-movable-references<V> template<bool Const> class enumerate_view<V>::iterator { […] public: […] friend constexpr difference_type operator-(const iterator& x, const iterator& y) noexcept; […] } […] }
friend constexpr difference_type operator-(const iterator& x, const iterator& y) noexcept;
-19- Effects: Equivalent to:
return x.pos_ - y.pos_;
[ 2023-06-17 Approved at June 2023 meeting in Varna. Status changed: Voting → WP. ]
[ 2023-05-24; Reflector poll ]
Set status to Tentatively Ready after five votes in favour during reflector poll.
The distance between two enumerate_view::iterator
is calculated by subtracting two integers, which never throws.
History | |||
---|---|---|---|
Date | User | Action | Args |
2023-06-19 14:50:03 | admin | set | messages: + msg13651 |
2023-06-19 14:50:03 | admin | set | status: voting -> wp |
2023-06-12 08:52:25 | admin | set | status: ready -> voting |
2023-05-24 14:11:02 | admin | set | messages: + msg13561 |
2023-05-24 14:11:02 | admin | set | status: new -> ready |
2023-03-27 16:44:02 | admin | set | messages: + msg13500 |
2023-03-27 00:00:00 | admin | create |