Scroll to navigation

std::swap(std::any)(3) C++ Standard Libary std::swap(std::any)(3)

NAME

std::swap(std::any) - std::swap(std::any)

Synopsis


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).

Parameters


lhs, rhs - objects to swap

Return value


(none)

See also


swap swaps two any objects
(public member function)

2022.07.31 http://cppreference.com