std::ranges::chunk_view<V>::outer-iterator::operator++

来自cppreference.com
 
 
范围库
范围适配器
 
std::ranges::chunk_view
成员函数
input_range
推导指引
outer-iterator
chunk_view::outer-iterator::operator++
chunk_view::outer-iterator::operator++(int)
outer-iterator::value_type
inner-iterator
 
constexpr /*outer-iterator*/& operator++();
(1) (C++23 起)
constexpr void operator++( int );
(2) (C++23 起)

增加迭代器 iterator

parent_ 为指向外围 chunk_view 的底层指针。

1) 等价于:
ranges::advance(*parent_->current_, parent_->remainder_, ranges::end(parent_->base_));
parent_->remainder_ = parent_->n_;
return *this;
调用此运算符之前,表达式 *this == std::default_sentinel 必须为 false
2) 等价于 ++*this

参数

(无)

返回值

1) *this
2) (无)

示例

参阅

(C++23)
计算剩余区块数量
(函数)