Difference between revisions of "cpp/thread/packaged task/swap2"
From cppreference.com
< cpp | thread | packaged task
m (Text replace - "{{example cpp" to "{{example") |
|||
Line 23: | Line 23: | ||
===Example=== | ===Example=== | ||
− | {{example | + | {{example |
| code= | | code= | ||
| output= | | output= |
Revision as of 17:42, 19 April 2012
Template:cpp/thread/packaged task/sidebar Template:ddcl list begin <tr class="t-dcl ">
<td class="t-dcl-nopad">template< class Function, class Args... >
</td>
void swap( packaged_task<Function(Args...)> &lhs,
<td class="t-dcl-nopad"> </td> <td class="t-dcl-nopad"> </td> </tr> Template:ddcl list end
Specializes 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
This section is incomplete Reason: no example |