std::ranges::chunk_view<V>::inner-iterator
来自cppreference.com
< cpp | ranges | chunk view
class /*inner-iterator*/ |
(C++23 起) (仅用于阐述*) |
|
当 V
实现 input_range
时,为 chunk_view::outer-iterator::value_type::begin
的返回类型。
成员类型
成员类型 | 定义 |
iterator_concept
|
std::input_iterator_tag |
difference_type
|
ranges::range_difference_t<V> |
value_type
|
ranges::range_value_t<V> |
数据成员
数据成员 | 定义 |
parent_ (私有)
|
指向类型为 ranges::chunk_view* 的”父对象”的指针。 (仅用于阐述的成员对象*) |
成员函数
(C++23) |
构造迭代器 (公开成员函数) |
(C++23) |
移动赋值另一迭代器 (公开成员函数) |
(C++23) |
返回指向当前元素的迭代器 (公开成员函数) |
(C++23) |
访问元素 (公开成员函数) |
(C++23) |
增加迭代器 (公开成员函数) |
非成员函数
(C++23) |
比较迭代器与默认哨位 (函数) |
(C++23) |
计算剩余元素的数量 (函数) |
(C++23) |
将底层迭代器解引用的结果转型为它的关联右值引用类型 (函数) |
(C++23) |
交换两个底层迭代器指向的对象 (函数) |
示例
运行此代码
#include <iostream> #include <iterator> #include <ranges> #include <sstream> int main() { auto letters = std::istringstream{"ABCDEFGHIJK"}; auto chunks = std::ranges::istream_view<char>(letters) | std::views::chunk(4); for (auto chunk : chunks) { // chunk 是 chunk_view::outer_iterator::value_type 类型的对象 std::cout << '['; for (auto inner_iter = chunk.begin(); inner_iter != std::default_sentinel; ++inner_iter) std::cout << *inner_iter; std::cout << "] "; } std::cout << '\n'; }
输出:
[ABCD] [EFGH] [IJK]
引用
- C++23 标准(ISO/IEC 14882:2024):
- 26.7.28.5 Class chunk_view::inner-iterator [range.chunk.inner.iter]