std::ranges::join_with_view<V,Pattern>::iterator<Const>::operator++,--
constexpr /*iterator*/& operator++(); |
(1) | (since C++23) |
constexpr void operator++( int ); |
(2) | (since C++23) |
constexpr /*iterator*/ operator++( int ) requires std::is_reference_v<InnerBase> && |
(3) | (since C++23) |
constexpr /*iterator*/& operator--() requires std::is_reference_v<InnerBase> && |
(4) | (since C++23) |
constexpr /*iterator*/ operator--( int ) requires std::is_reference_v<InnerBase> && |
(5) | (since C++23) |
Increments or decrements the iterator.
InnerBase
or PatternBase
.)
- If the incremented inner iterator reaches the end of the pattern range, it is destroyed, and an iterator to the beginning of the next inner range is constructed.
- If the incremented inner iterator reaches the end of the inner range, the outer iterator is incremented, and if the outer iterator is not the end iterator, the inner iterator is destroyed and an iterator to the beginning of the pattern range is constructed.
- The above steps may be repeated (e.g. if the pattern is empty), until either the inner range is not empty, or the outer iterator reaches the end.
- If the stored inner iterator refers to the beginning of the inner range, it is destroyed, and an iterator to the end of the pattern range is constructed.
- If the stored inner iterator refers to the beginning of the pattern range, it is destroyed, the outer iterator is decremented, and an iterator to end of the inner range is constructed.
- The above steps may be repeated (e.g. if the pattern is empty), until the inner range is not empty.
If InnerBase
is not a reference, the inner range is stored in the parent join_with_view
for iteration. The inner range need not be movable.
If InnerBase
is a reference, and the outer iterator reaches the end, the inner iterator points to the beginning of the pattern range.
Parameters
(none)