std::thread::swap

From cppreference.com
void swap( thread& other );
(since C++11)

Exchanges the underlying handles of two thread objects.

Contents

[edit] Parameters

other - the thread to swap with

[edit] Return value

(none)

[edit] Exceptions

noexcept specification:  
noexcept
  (since C++11)

[edit] Example

[edit] See also

specializes the std::swap algorithm
(function template)