Namespaces
Variants
Views
Actions

std::swap(std::packaged_task)

From cppreference.com
< cpp‎ | thread‎ | packaged task
Revision as of 11:08, 19 March 2012 by P12 (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Template:cpp/thread/packaged task/sidebar Template:ddcl list begin <tr class="t-dcl ">

<td class="t-dcl-nopad">
template< class Function, class Args... >
void swap( packaged_task<Function(Args...)> &lhs, packaged_task<Function(Args...)> &rhs );
</td>

<td class="t-dcl-nopad"> </td> <td class="t-dcl-nopad"> </td> </tr> Template:ddcl list end

Overloads the Template:cpp algorithm for Template:cpp. Exchanges the state of lhs with that of rhs. Effectively calls Template:cpp.

Contents

Parameters

lhs, rhs - packaged tasks whose states to swap

Return value

(none)

Exceptions

noexcept specification:  
noexcept
  

Example

Template:example cpp

See also

Template:cpp/thread/packaged task/dcl list swap