friend void swap(stop_token& x, stop_token& y) noexcept;
概要
2つのstop_token
オブジェクトを入れ替える。
効果
以下と等価:
x.swap(y);
戻り値
なし
例外
なし
例
#include <cassert>
#include <stop_token>
int main()
{
std::stop_source ss;
std::stop_token st1 = ss.get_token();
std::stop_token st2;
assert(st1.stop_possible() == true);
assert(st2.stop_possible() == false);
swap(st1, st2);
assert(st1.stop_possible() == false);
assert(st2.stop_possible() == true);
}
出力
バージョン
言語
- C++20
処理系
- Clang: ??
- GCC: ??
- ICC: ??
- Visual C++: ??