std::move_only_function::swap
From cppreference.com
< cpp | utility | functional | move only function
C++
Utilities library
|
|
Function objects
|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Old binders and adaptors | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
void swap( move_only_function& other )noexcept; | (since C++23) | |
Exchanges the stored callable objects of *this and other
.
[edit]Parameters
other | - | function wrapper to exchange the stored callable object with |
[edit]Return value
(none)
[edit]See also
swaps the contents (public member function of std::function<R(Args...)> )[edit] |