STLdoc
STLdocumentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Classes | Macros | Functions
set File Reference
#include <xtree>

Classes

class  _Tset_traits< _Kty, _Pr, _Alloc, _Mfl >
 
class  set< _Kty, _Pr, _Alloc >
 
class  multiset< _Kty, _Pr, _Alloc >
 

Macros

#define _SET_
 

Functions

template<class _Kty , class _Pr , class _Alloc >
void swap (set< _Kty, _Pr, _Alloc > &_Left, set< _Kty, _Pr, _Alloc > &_Right) _NOEXCEPT_OP(_NOEXCEPT_OP(_Left.swap(_Right)))
 
template<class _Kty , class _Pr , class _Alloc >
void swap (multiset< _Kty, _Pr, _Alloc > &_Left, multiset< _Kty, _Pr, _Alloc > &_Right) _NOEXCEPT_OP(_NOEXCEPT_OP(_Left.swap(_Right)))
 

Macro Definition Documentation

#define _SET_

Function Documentation

template<class _Kty , class _Pr , class _Alloc >
void swap ( set< _Kty, _Pr, _Alloc > &  _Left,
set< _Kty, _Pr, _Alloc > &  _Right 
)
inline
186  { // swap _Left and _Right sets
187  _Left.swap(_Right);
188  }
void swap(_Myt &_Right) _NOEXCEPT_OP(_Alty
Definition: set:145
template<class _Kty , class _Pr , class _Alloc >
void swap ( multiset< _Kty, _Pr, _Alloc > &  _Left,
multiset< _Kty, _Pr, _Alloc > &  _Right 
)
inline
344  { // swap _Left and _Right multisets
345  _Left.swap(_Right);
346  }
void swap(_Myt &_Right) _NOEXCEPT_OP(_Alty
Definition: set:303