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.
Function template swap
c++boost.gif (8819 bytes)HomeLibrariesPeopleFAQMore

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.

Last revised: , at GMTCopyright © 2002, 2003 Eric Friedman, Itay Maman