std::experimental::swap(std::experimental::packaged_task)

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

# Declarations

template< class R, class... Args >
void swap( std::experimental::packaged_task<R(Args...)> &lhs,
std::experimental::packaged_task<R(Args...)> &rhs ) noexcept;

# Parameters

# Return value

(none)

# Example

This section is incompleteReason: no example

# See also