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
381  { // swap _Left and _Right maps
382  _Left.swap(_Right);
383  }
void swap(_Myt &_Right) _NOEXCEPT_OP(_Alty
Definition: map:189
template<class _Kty , class _Ty , class _Pr , class _Alloc >
void swap ( multimap< _Kty, _Ty, _Pr, _Alloc > &  _Left,
multimap< _Kty, _Ty, _Pr, _Alloc > &  _Right 
)
inline
573  { // swap _Left and _Right multimaps
574  _Left.swap(_Right);
575  }
void swap(_Myt &_Right) _NOEXCEPT_OP(_Alty
Definition: map:508