On this page
std::ranges::cartesian_product_view<First, Vs...>::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 current_
denote the underlying tuple of iterators and parent_
denote the underlying pointer to cartesian_product_view
.
1) Equivalent to
next(); return *this;
2) Equivalent to
++*this;
3) Equivalent to
auto tmp = *this; ++*this; return tmp;
4) Equivalent to
prev(); return *this;
5) Equivalent to
6) Sets the value of auto tmp = *this; --*this; return tmp;
*this
to ret
, where ret
is:
- if
n > 0
, the value of*this
provided thatnext
been calledn
times. Otherwise, - if
n < 0
, the value of*this
provided thatprev
been called-n
times. Otherwise, - the value of
*this
before the call.
n
is not in the range [
ranges::distance(*this, ranges::begin(*parent_))
,
ranges::distance(*this, ranges::end(*parent_))
)
.
7) Equivalent to
*this += -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.
Complexity
6) Constant.
Example
See also
(C++23)
|
performs iterator arithmetic (function) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/ranges/cartesian_product_view/iterator/operator_arith