C++ named requirements: LegacyForwardIterator
A LegacyForwardIterator is a LegacyIterator that can read data from the pointed-to element.
Unlike LegacyInputIterator and LegacyOutputIterator, it can be used in multipass algorithms.
If a LegacyForwardIterator it originates from a Container, then it's value_type is the same as the container's,
so dereferencing (*it) obtains the container's value_type.
Requirements
The type It satisfies LegacyForwardIterator if
- The type It satisfies LegacyInputIterator
- The type It satisfies DefaultConstructible
- Objects of the type It provide multipass guarantee described below
- Let T be the value type of It. The type
std::iterator_traits<It&tg;::referencemust be either- T& or T&& (since C++11) if It satisfies LegacyOutputIterator (It is mutable), or
- const T& or const T&& (since C++11) otherwise (It is constant),
(where T is the type denoted bystd::iterator_traits<It>::value_type)
- Equality and inequality comparison is defined over all iterators for the same underlying sequence and the value initialized-iterators (since C++14).
And, given
i, dereferenceable lvalue of type Itreference, the type denoted bystd::iterator_traits<It>::reference
The following expressions must be valid and have their specified effects
| Expression | Return type | Equivalent expression |
|---|---|---|
i++ | It | It ip = i; ++i; return ip; |
*i++ | reference |
A mutable LegacyForwardIterator is a LegacyForwardIterator that additionally satisfies the LegacyOutputIterator requirements.
Multipass guarantee
Given a and b, dereferenceable iterators of type It
- If
aandbcompare equal (a == bis contextually convertible to true) then either they are both non-dereferenceable or*aand*bare references bound to the same object. - If
*aand*brefer to the same object, thena == b. - Assignment through a mutable ForwardIterator iterator cannot invalidate the iterator (implicit due to
referencedefined as a true reference). - Incrementing a copy of a does not change the value read from a (formally, either It is a raw pointer type or the expression
(void)++It(a), *ais equivalent to the expression*a). a == bimplies++a == ++b.
Singular iterators (since C++14)
Click to expand
Concept (since C++20)
Click to expand
Defect reports
The following behavior-changing defect reports were applied retroactively to previously published C++ standards.
| DR | Applied to | Behavior as published | Correct behavior |
|---|---|---|---|
| LWG 3798 | C++20 | __LegacyForwardIterator requires std::iter_reference_t<It> to be an lvalue reference type | also allows rvalue reference |