std::ranges::chunk_by_view<V,Pred>::iterator::operator*

来自cppreference.com
< cpp‎ | ranges‎ | chunk by view‎ | iterator
 
 
范围库
范围适配器
 
 
constexpr value_type operator*() const;
(C++23 起)

返回 chunk_by_view 的当前元素。

等价于:return ranges::subrange(current_, next_)

在调用该运算符之前 current_ 必须不等于 next_,否则行为未定义。

参数

(无)

返回值

当前元素。

示例