std::generator<Ref,V,Allocator>::begin

来自cppreference.com
< cpp‎ | coroutine‎ | generator
 
 
工具库
通用工具
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中弃用)
整数比较函数
(C++20)(C++20)(C++20)
(C++20)
swap 与类型运算
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
常用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
初等字符串转换
(C++17)
(C++17)
 
协程支持
协程特征
协程柄
无操作协程
平凡可等待体
 
范围库
范围访问
范围转换器
(C++23)
范围原语



悬垂迭代器处理
范围概念
视图

范围工厂
适配器
范围生成器
范围适配器对象
范围适配器闭包对象
辅助项
 
 
/*iterator*/ begin();
(C++23 起)

coroutine_ 推入栈 *active_ 中,然后对 coroutine_.resume() 求值。

在调用 begin() 之前,coroutine_ 必须指代一个在他的 初始暂停点 暂停的协程。

返回值

迭代器,其成员 coroutine_ 指代同一协程 coroutine_

注解

在同一个 generator 对象上调用多次 begin() 的行为是未定义的。

示例