Namespaces
Variants
Views
Actions

std::swap(std::any)

From cppreference.com
< cpp‎ | utility‎ | any
 
 
 
std::any
Member functions
Modifers
Observers
Non-member functions
swap(std::any)
 
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] Return value

(none)

[edit] See also

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