std::experimental::swap(std::experimental::packaged_task)
From cppreference.com
< cpp | experimental | lib extensions | packaged task
template< class R, class... Args >
void swap( std::experimental::packaged_task<R(Args...)> &lhs, |
||
Overloads the swap
algorithm for std::experimental::packaged_task. Exchanges the state of lhs
with that of rhs
. Effectively calls lhs.swap(rhs).
Contents |
[edit] Parameters
lhs, rhs | - | packaged_task s whose states to swap
|
[edit] Return value
(none)
[edit] Exceptions
noexcept specification:
noexcept
[edit] Example
This section is incomplete Reason: no example |
[edit] See also
swaps two task objects (public member function of std::packaged_task )
|