swap(std::stop_source)

< cpp‎ | thread‎ | stop source
 
 
线程支持库
线程
(C++11)
(C++20)
(C++20)
this_thread 命名空间
(C++11)
(C++11)
(C++11)
互斥
(C++11)
通用锁管理
(C++11)
(C++11)
(C++11)
(C++11)(C++11)(C++11)
(C++11)
(C++11)
条件变量
(C++11)
信号量
闩与屏障
(C++20)
(C++20)
future
(C++11)
(C++11)
(C++11)
(C++11)
 
 
friend void swap( stop_source &lhs, stop_source &rhs ) noexcept;
(C++20 起)

std::stop_source 重载 std::swap 算法。交换 lhsrhs 的停止状态。等效地调用 lhs.swap(rhs)

此函数对通常无限定有限定查找不可见,而只能在 std::stop_source 为参数的关联类时由实参依赖查找找到。

参数

lhs, rhs - 要交换的 stop_source

返回值

(无)