std::swap(std::any)
From cppreference.com
 
 
 
 
 
 C++ 
 Feature test macros (C++20)
 Concepts library (C++20)
 Metaprogramming library (C++11)
 Ranges library (C++20)
 Filesystem library (C++17)
 Concurrency support library (C++11)
 Execution control library (C++26)
Utilities library 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  
  
 
 
 Type support (basic types, RTTI)
 Library feature-test macros (C++20)
(C++11)
(C++20)
(C++26)
(C++20)
 Coroutine support (C++20)
 Contract support (C++26)
(C++20)(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
  (C++20)(C++20)(C++20)
  (C++20)(C++20)(C++20)
 General utilities
 Relational operators (deprecated in C++20)
(C++20)(C++20)(C++20)
  (C++20)(C++20)(C++20)
(C++20)
 Swap and type operations 
 Common vocabulary types
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).
[edit] Parameters
 lhs, rhs
 -
 objects to swap
[edit] Example
Run this code
#include <any> #include <print> #include <string> int main() { std::any p = 42, q = std::string {"Bishop"}; std::println ("p: {}, q: {}", std::any_cast <int>(p), std::any_cast <std::string &>(q)); std::println ("swap(p, q)"); std::swap (p, q); std::println ("p: {}, q: {}", std::any_cast <std::string &>(p), std::any_cast <int>(q)); }
Output:
p: 42, q: Bishop swap(p, q) p: Bishop, q: 42