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
的返回值类型。
内容 |
[edit] 成员类型
成员类型 | 定义 |
iterator_concept
|
std::input_iterator_tag |
difference_type
|
ranges::range_difference_t<V> |
value_type
|
ranges::range_value_t<V> |
[edit] 数据成员
成员对象 | 定义 |
parent_ (private) |
指向类型为 ranges::chunk_view* 的“父对象”的指针。 (仅供说明的成员对象*) |
[edit] 成员函数
(C++23) |
构造一个迭代器 (公有成员函数) |
(C++23) |
移动赋值另一个迭代器 (公有成员函数) |
(C++23) |
返回指向当前元素的迭代器 (公有成员函数) |
(C++23) |
访问元素 (公有成员函数) |
(C++23) |
递增迭代器 (公有成员函数) |
[edit] 非成员函数
(C++23) |
将迭代器与 默认哨兵 进行比较 (函数) |
(C++23) |
计算剩余元素数量 (函数) |
(C++23) |
将解除对基础迭代器的引用结果转换为其关联的右值引用类型 (函数) |
(C++23) |
交换两个基础迭代器指向的对象 (函数) |
[edit] 示例
运行此代码
#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 is an object of type 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]
[edit] 参考资料
- C++23 标准 (ISO/IEC 14882:2024)
- 26.7.28.5 类 chunk_view::inner-iterator [range.chunk.inner.iter]