Increments or decrements the iterator.
Let parent_
, current_
, and next_
be the appropriate underlying (exposition-only) data-members of iterator.
Let find-next
and find-prev
be appropriate (exposition-only) member functions of ranges::chunk_by_view
.
auto tmp = *this; ++*this; return tmp;
auto tmp = *this; --*this; return tmp;
(none).
*this
*this
that was made before the change.
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/ranges/chunk_by_view/iterator/operator_arith