std::ranges::chunk_by_view<V,Pred>::iterator::operator++,--
来自 cppreference.com
< cpp | ranges | chunk by view | iterator
constexpr /*iterator*/& operator++(); |
(1) | (自 C++23) |
constexpr /*iterator*/ operator++(int); |
(2) | (自 C++23) |
constexpr /*iterator*/& operator--() requires ranges::bidirectional_range<V>; |
(3) | (自 C++23) |
constexpr /*iterator*/ operator--(int) requires ranges::bidirectional_range<V>; |
(4) | (自 C++23) |
递增或递减 迭代器.
令 parent_
、current_
和 next_
为 迭代器 的适当的底层(仅供说明)数据成员。
令 find-next 和 find-prev 为 ranges::chunk_by_view 的适当的(仅供说明)成员函数。
1) 等效于
current_ = next_; next_ = parent_->/*find-next*/(current_); return *this;
2) 等效于: auto tmp = *this; ++*this; return tmp;
3) 等效于
next_ = current_; current_ = parent_->/*find-prev*/(next_); return *this;
4) 等效于: auto tmp = *this; --*this; return tmp;
[编辑] 参数
(无)
[编辑] 返回值
1,3) *this
2,4) 在更改之前创建的 *this 的副本。