This page is a snapshot from the LWG issues list, see the Library Active Issues List for more information and the meaning of C++23 status.
advanceableSection: 25.6.4.2 [range.iota.view] Status: C++23 Submitter: Jiang An Opened: 2021-09-23 Last modified: 2023-11-22
Priority: 3
View all other issues in [range.iota.view].
View all issues with C++23 status.
Discussion:
Unsigned integer types satisfy advanceable, but don't model it, since
every two values of an unsigned integer type are reachable from each other, and modular arithmetic is performed on unsigned integer types,
which makes the last three bullets of the semantic requirements of advanceable
(25.6.4.2 [range.iota.view]/5) can't be satisfied, and some (if not all) uses of
iota_views of unsigned integer types ill-formed, no diagnostic required.
advanceable
behave incorrectly for unsigned integer types. E.g. according to 25.6.4.2 [range.iota.view]/6
and 25.6.4.2 [range.iota.view]/16, std::ranges::iota_view<std::uint8_t, std::uint8_t>(std::uint8_t(1)).size()
is well-defined IMO, because
Bound()isstd::uint8_t(0), which is reachable fromstd::uint8_t(1), and not modelingadvanceableshouldn't affect the validity, as bothWandBoundare integer types.
However, it returns unsigned(-1) on common implementations (where sizeof(int) > sizeof(std::uint8_t)),
which is wrong.
advanceable should be adjusted,
and a refined definition of reachability in 25.6.4 [range.iota] is needed to avoid reaching
a from b when a > b (the iterator type is also affected).
[2021-10-14; Reflector poll]
Set priority to 3 after reflector poll.
[Tim Song commented:]
The advanceable part of the issue is NAD.
This is no different from NaN and totally_ordered,
see 16.3.2.3 [structure.requirements]/8.
The part about iota_view<uint8_t, uint8_t>(1) is simply this:
when we added "When W and Bound model ..." to
25.6.4.2 [range.iota.view]/8,
we forgot to add its equivalent to the single-argument constructor.
We should do that.
[2022-10-12; Jonathan provides wording]
[2022-10-19; Reflector poll]
Set status to "Tentatively Ready" after seven votes in favour in reflector poll.
[2022-11-12 Approved at November 2022 meeting in Kona. Status changed: Voting → WP.]
Proposed resolution:
This wording is relative to N4917.
Modify 25.6.4.2 [range.iota.view] as indicated:
constexpr explicit iota_view(W value);-6- Preconditions:
Bounddenotesunreachable_sentinel_torBound()is reachable fromvalue. WhenWandBoundmodeltotally_ordered_with, thenbool(value <= Bound())istrue.-7- Effects: Initializes
value_withvalue.constexpr iota_view(type_identity_t<W> value, type_identity_t<Bound> bound);-8- Preconditions:
Bounddenotesunreachable_sentinel_torboundis reachable fromvalue. WhenWandBoundmodeltotally_ordered_with, thenbool(value <= bound)istrue.-9- Effects: Initializes
value_withvalueandbound_withbound.