std::packaged_task::swap

From cppreference.com
 
 
Thread support library
Threads
(C++11)
this_thread namespace
(C++11)
(C++11)
(C++11)
(C++11)
Mutual exclusion
(C++11)
(C++11)
(C++17)
Generic lock management
(C++11)
(C++11)
(C++14)
(C++11)
(C++11)
(C++11)(C++11)(C++11)
(C++11)
(C++11)
Condition variables
(C++11)
Futures
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
 
 
void swap( packaged_task& other );
(since C++11)

Exchanges the shared states and stored tasks of *this and other.

Contents

[edit] Parameters

other - packaged task whose state to swap with

[edit] Return value

(none)

[edit] Exceptions

noexcept specification:  
noexcept
  

[edit] See also

specializes the std::swap algorithm
(function template)