void swap(any& lhs, any& rhs) noexcept; | (since C++17) |
Overloads the std::swap
algorithm for std::any
. Swaps the content of two any
objects by calling lhs.swap(rhs)
.
lhs, rhs | - | objects to swap |
(none).
swaps two any objects (public member function) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/utility/any/swap2