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 the documentation for an old version of boost. Click here for the latest Boost documentation.
PrevUpHomeNext

Function template swap

boost::swap

Synopsis

template<typename T1, typename T2, ..., typename TN> 
  void swap(variant<T1, T2, ..., TN> & lhs, variant<T1, T2, ..., TN> & rhs);

Description

Effects:

Swaps lhs with rhs by application of variant::swap.

Throws:

May fail with any exception arising from variant::swap.

PrevUpHomeNext