std::experimental::function<R(Args...)>::swap
来自 cppreference.com
< cpp | experimental | function
void swap( function& other ); |
(库基础 TS) | |
交换 *this 和 other 中存储的可调用对象。
*this 和 other 的分配器不会交换。
如果 *this->get_memory_resource() != *other.get_memory_resource(),则行为未定义。 |
(库基础 TS) (直到库基础 TS v3) |
如果 this->get_allocator() != other.get_allocator(),则行为未定义。 |
(库基础 TS v3) |
[编辑] 参数
other | - | 要交换存储的可调用对象的函数包装器 |
[编辑] 返回值
(无)