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

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

# Declarations

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

# Parameters

# Return value

(none)

# Example

This section is incompleteReason: no example

# See also