Difference between revisions of "cpp/thread/promise/swap2"
From cppreference.com
m (Text replace - "{{noexcept" to "{{unreviewed noexcept") |
m (merge noexcept) |
||
Line 3: | Line 3: | ||
{{ddcl | header=future | since=c++11 | | {{ddcl | header=future | since=c++11 | | ||
template< class R > | template< class R > | ||
− | void swap( promise<R> &lhs, promise<R> &rhs ); | + | void swap( promise<R> &lhs, promise<R> &rhs ) noexcept; |
}} | }} | ||
Line 15: | Line 15: | ||
===Return value=== | ===Return value=== | ||
(none) | (none) | ||
− | |||
− | |||
− | |||
===Example=== | ===Example=== |
Revision as of 13:50, 11 May 2017
Defined in header <future>
|
||
template< class R > void swap( promise<R> &lhs, promise<R> &rhs ) noexcept; |
(since C++11) | |
Specializes the std::swap algorithm for std::promise. Exchanges the shared state of lhs
with that of rhs
. Effectively calls lhs.swap(rhs).
Contents |
Parameters
lhs, rhs | - | promises whose states to swap |
Return value
(none)
Example
This section is incomplete Reason: no example |
See also
swaps two promise objects (public member function) |