std::generator<Ref,V,Allocator>::operator=
来自 cppreference.com
generator& operator=( generator other ) noexcept; |
(自 C++23 起) | |
替换生成器对象的 内容。 等同于
std::swap(coroutine_
,
other.coroutine_
);
std::swap(active_
,
other.active_
);
内容 |
[编辑] 参数
other | - | 另一个要从中移动的生成器 |
[编辑] 返回值
*this
[编辑] 复杂度
本节内容不完整 |
[编辑] 备注
先前从 other 获取的迭代器不会失效 - 它们会变为指向 *this 的迭代器。
此赋值运算符在技术上是一个 复制赋值运算符,尽管 std::generator
仅是移动可赋值的。
[编辑] 示例
本节内容不完整 原因:没有示例 |