std::experimental::swap(std::experimental::function)

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 parallelism 2 (parallelism TS v2)
Extensions for concurrency (concurrency TS)
Concepts (concepts TS)
Ranges (ranges TS)
Special mathematical functions (special math TR)
 
 
 
template< class R, class... Args >

void swap( std::experimental::function<R(Args...)> &lhs,

           std::experimental::function<R(Args...)> &rhs );

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

Parameters

lhs, rhs - polymorphic function wrappers whose states to swap

Return value

(none)

Exceptions

(none)

Example

See also

swaps the contents
(public member function)