std::experimental::swap(std::experimental::promise)

From cppreference.com
 
 
Technical specifications
Filesystem library (filesystem TS)
Library fundamentals (library fundamentals TS)
Library fundamentals 2 (library fundamentals 2 TS)
Extensions for parallelism (parallelism TS)
Extensions for concurrency (concurrency TS)
Concepts (concepts TS)
Ranges (ranges TS)
Special mathematical functions (special math TR)
 
 
 
template< class R >

void swap( std::experimental::promise<R> &lhs,

           std::experimental::promise<R> &rhs );

Overloads the swap algorithm for std::experimental::promise. Exchanges the state of lhs with that of rhs. Effectively calls lhs.swap(rhs).

Parameters

lhs, rhs - promises whose states to swap

Return value

(none)

Exceptions

noexcept specification:  
noexcept
  

Example

See also

swaps two promise objects
(public member function of std::promise)