std::swap(std::any)
From cppreference.com
void swap(any& lhs, any& rhs); |
(since C++17) | |
Overloads the std::swap algorithm for std::any. Swaps the content of two any
objects by calling lhs.swap(rhs).
Parameters
lhs, rhs | - | objects to swap |
Return value
(none)
Exceptions
noexcept specification:
noexcept
See also
swaps two any objects (public member function) |