table of contents
std::experimental::swap(std::experimental::function)(3) | C++ Standard Libary | std::experimental::swap(std::experimental::function)(3) |
NAME¶
std::experimental::swap(std::experimental::function) - std::experimental::swap(std::experimental::function)
Synopsis¶
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¶
May throw implementation-defined exceptions.
Example¶
This section is incomplete
Reason: no example
See also¶
swap swaps the contents
(public member function)
Category:¶
* Todo no example
2024.06.10 | http://cppreference.com |