Boost
C++ Libraries
...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
This is an older version of Boost and was released in 2020. The current version is 1.89.0.
boost::swap
// In header: <boost/variant/variant.hpp> template<typename T1, typename T2, ..., typename TN> void swap(variant<T1, T2, ..., TN> & lhs, variant<T1, T2, ..., TN> & rhs);
Effects: |
Swaps lhs with rhs by application
of variant::swap. |
Throws: |
May fail with any exception arising from
variant::swap. |