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

Classes

class  _Tmap_traits< _Kty, _Ty, _Pr, _Alloc, _Mfl >
 
class  _Tmap_traits< _Kty, _Ty, _Pr, _Alloc, _Mfl >::value_compare
 
class  map< _Kty, _Ty, _Pr, _Alloc >
 
class  multimap< _Kty, _Ty, _Pr, _Alloc >
 

Macros

#define _MAP_
 

Functions

template<class _Kty , class _Ty , class _Pr , class _Alloc >
void swap (map< _Kty, _Ty, _Pr, _Alloc > &_Left, map< _Kty, _Ty, _Pr, _Alloc > &_Right) _NOEXCEPT_OP(_NOEXCEPT_OP(_Left.swap(_Right)))
 
template<class _Kty , class _Ty , class _Pr , class _Alloc >
void swap (multimap< _Kty, _Ty, _Pr, _Alloc > &_Left, multimap< _Kty, _Ty, _Pr, _Alloc > &_Right) _NOEXCEPT_OP(_NOEXCEPT_OP(_Left.swap(_Right)))
 

Macro Definition Documentation

#define _MAP_

Function Documentation

template<class _Kty , class _Ty , class _Pr , class _Alloc >
void swap ( map< _Kty, _Ty, _Pr, _Alloc > &  _Left,
map< _Kty, _Ty, _Pr, _Alloc > &  _Right 
)
inline
367  { // swap _Left and _Right maps
368  _Left.swap(_Right);
369  }
void swap(_Myt &_Right) _NOEXCEPT_OP(_Alty
Definition: map:181
template<class _Kty , class _Ty , class _Pr , class _Alloc >
void swap ( multimap< _Kty, _Ty, _Pr, _Alloc > &  _Left,
multimap< _Kty, _Ty, _Pr, _Alloc > &  _Right 
)
inline
544  { // swap _Left and _Right multimaps
545  _Left.swap(_Right);
546  }
void swap(_Myt &_Right) _NOEXCEPT_OP(_Alty
Definition: map:486