std::swap(std::any) - cppreference.com (original) (raw)

| Defined in header | | | | ----------------------------------------------------------------- | | ------------- | | 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).

[edit] Parameters

lhs, rhs - objects to swap

[edit] Example

Output:

p: 42, q: Bishop swap(p, q) p: Bishop, q: 42

[edit] See also

| | swaps two any objects (public member function) [edit] | | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |