On this page
std::ranges::zip_transform_view<F,Views...>::iterator<Const>::operator++,--,+=,-=
|
(1) | (since C++23) |
|
(2) | (since C++23) |
|
(3) | (since C++23) |
|
(4) | (since C++23) |
|
(5) | (since C++23) |
|
(6) | (since C++23) |
|
(7) | (since C++23) |
Increments or decrements the iterator.
Let inner_
be the underlying iterator and Base
be the exposition-only member type.
Equivalent to:
1)
++inner_; return *this;
2)
++*this;
3)
auto tmp = *this; ++*this; return tmp;
4)
--inner_; return *this;
5)
auto tmp = *this; --*this; return tmp;
6)
inner_ += n; return *this;
7)
inner_ -= n; return *this;
Parameters
n | - | position relative to current location |
Return value
1,4,6,7)
*this
2) (none)
3,5) a copy of
*this
that was made before the change
Example
See also
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/ranges/zip_transform_view/iterator/operator_arith