std::any::swap
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
void swap( any& other ) noexcept;
 
 (since C++17) 
Swaps the content of two any objects.
[edit] Parameters
 other
 -
 object to swap with
[edit] Example
Run this code
#include <any> #include <print> #include <string> #include <string_view> int main() { std::any a = std::string {"King"}; std::any b = std::string_view {"Queen"}; std::println ("a = {}", std::any_cast <std::string &>(a)); std::println ("b = {}", std::any_cast <std::string_view &>(b)); std::println ("swap(a, b)"); a.swap(b); std::println ("a = {}", std::any_cast <std::string_view &>(a)); std::println ("b = {}", std::any_cast <std::string &>(b)); }
Output:
a = King b = Queen swap(a, b) a = Queen b = King