std::execution::stopped_as_error
来自 cppreference.com
定义在头文件 <execution> 中 |
||
template< std::move_constructible Error > execution::sender auto stopped_as_error( execution::sender auto snd, Error err ); |
(自 C++26 起) | |
[编辑] 参数
snd | - | 输入发送器,其停止通道被映射到 err |
err | - | 停止通道被映射到的错误 |
[编辑] 返回值
返回一个发送器,该发送器将停止通道映射到 err 的错误。
[编辑] 示例
本节内容不完整 原因:没有示例 |