std::ranges::chunk_view<V>::outer-iterator::operator*
来自cppreference.com
< cpp | ranges | chunk view | outer iterator
constexpr value_type operator*() const; |
(C++23 起) | |
返回 chunk_view
中的当前区块。
令 parent_
为底层指针,并令 value_type
是作为迭代器的值类型的嵌套类。
等价于:return value_type(*parent_);。
调用此运算符之前,表达式 *this == std::default_sentinel 必须为 false。
参数
(无)
返回值
当前元素(一个区块)。
示例
本节未完成 原因:暂无示例 |