Namespaces
Variants
Views
Actions

std::swap(std::any)

From cppreference.com
< cpp‎ | utility‎ | any
Revision as of 06:16, 21 April 2023 by Space Mission (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
 
 
Utilities library
General utilities
Relational operators (deprecated in C++20)
 
 
Defined in header <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).

Parameters

lhs, rhs - objects to swap

Return value

(none)

See also

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