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

Classes

class  _Umap_traits< _Kty, _Ty, _Tr, _Alloc, _Mfl >
 
class  _Umap_traits< _Kty, _Ty, _Tr, _Alloc, _Mfl >::value_compare
 
class  unordered_map< _Kty, _Ty, _Hasher, _Keyeq, _Alloc >
 
class  unordered_multimap< _Kty, _Ty, _Hasher, _Keyeq, _Alloc >
 

Macros

#define _UNORDERED_MAP_
 

Functions

template<class _Kty , class _Ty , class _Hasher , class _Keyeq , class _Alloc >
void swap (unordered_map< _Kty, _Ty, _Hasher, _Keyeq, _Alloc > &_Left, unordered_map< _Kty, _Ty, _Hasher, _Keyeq, _Alloc > &_Right) _NOEXCEPT_OP(_NOEXCEPT_OP(_Left.swap(_Right)))
 
template<class _Kty , class _Ty , class _Hasher , class _Keyeq , class _Alloc >
bool operator== (const unordered_map< _Kty, _Ty, _Hasher, _Keyeq, _Alloc > &_Left, const unordered_map< _Kty, _Ty, _Hasher, _Keyeq, _Alloc > &_Right)
 
template<class _Kty , class _Ty , class _Hasher , class _Keyeq , class _Alloc >
bool operator!= (const unordered_map< _Kty, _Ty, _Hasher, _Keyeq, _Alloc > &_Left, const unordered_map< _Kty, _Ty, _Hasher, _Keyeq, _Alloc > &_Right)
 
template<class _Kty , class _Ty , class _Hasher , class _Keyeq , class _Alloc >
void swap (unordered_multimap< _Kty, _Ty, _Hasher, _Keyeq, _Alloc > &_Left, unordered_multimap< _Kty, _Ty, _Hasher, _Keyeq, _Alloc > &_Right) _NOEXCEPT_OP(_NOEXCEPT_OP(_Left.swap(_Right)))
 
template<class _Kty , class _Ty , class _Hasher , class _Keyeq , class _Alloc >
bool operator== (const unordered_multimap< _Kty, _Ty, _Hasher, _Keyeq, _Alloc > &_Left, const unordered_multimap< _Kty, _Ty, _Hasher, _Keyeq, _Alloc > &_Right)
 
template<class _Kty , class _Ty , class _Hasher , class _Keyeq , class _Alloc >
bool operator!= (const unordered_multimap< _Kty, _Ty, _Hasher, _Keyeq, _Alloc > &_Left, const unordered_multimap< _Kty, _Ty, _Hasher, _Keyeq, _Alloc > &_Right)
 

Macro Definition Documentation

#define _UNORDERED_MAP_

Function Documentation

template<class _Kty , class _Ty , class _Hasher , class _Keyeq , class _Alloc >
bool operator!= ( const unordered_map< _Kty, _Ty, _Hasher, _Keyeq, _Alloc > &  _Left,
const unordered_map< _Kty, _Ty, _Hasher, _Keyeq, _Alloc > &  _Right 
)
inline
530  { // test for unordered_map inequality
531  return (!(_Left == _Right));
532  }
template<class _Kty , class _Ty , class _Hasher , class _Keyeq , class _Alloc >
bool operator!= ( const unordered_multimap< _Kty, _Ty, _Hasher, _Keyeq, _Alloc > &  _Left,
const unordered_multimap< _Kty, _Ty, _Hasher, _Keyeq, _Alloc > &  _Right 
)
inline
871  { // test for unordered_multimap inequality
872  return (!(_Left == _Right));
873  }
template<class _Kty , class _Ty , class _Hasher , class _Keyeq , class _Alloc >
bool operator== ( const unordered_map< _Kty, _Ty, _Hasher, _Keyeq, _Alloc > &  _Left,
const unordered_map< _Kty, _Ty, _Hasher, _Keyeq, _Alloc > &  _Right 
)
inline
518  { // test for unordered_map equality
519  return (_Hash_equal(_Left, _Right));
520  }
bool _Hash_equal(const _Hash< _Traits > &_Left, const _Hash< _Traits > &_Right)
Definition: xhash:1011
template<class _Kty , class _Ty , class _Hasher , class _Keyeq , class _Alloc >
bool operator== ( const unordered_multimap< _Kty, _Ty, _Hasher, _Keyeq, _Alloc > &  _Left,
const unordered_multimap< _Kty, _Ty, _Hasher, _Keyeq, _Alloc > &  _Right 
)
inline
859  { // test for unordered_multimap equality
860  return (_Hash_equal(_Left, _Right));
861  }
bool _Hash_equal(const _Hash< _Traits > &_Left, const _Hash< _Traits > &_Right)
Definition: xhash:1011
template<class _Kty , class _Ty , class _Hasher , class _Keyeq , class _Alloc >
void swap ( unordered_map< _Kty, _Ty, _Hasher, _Keyeq, _Alloc > &  _Left,
unordered_map< _Kty, _Ty, _Hasher, _Keyeq, _Alloc > &  _Right 
)
506  { // swap _Left and _Right unordered_maps
507  _Left.swap(_Right);
508  }
void swap(_Myt &_Right) _NOEXCEPT_OP(_Alty
Definition: unordered_map:278
template<class _Kty , class _Ty , class _Hasher , class _Keyeq , class _Alloc >
void swap ( unordered_multimap< _Kty, _Ty, _Hasher, _Keyeq, _Alloc > &  _Left,
unordered_multimap< _Kty, _Ty, _Hasher, _Keyeq, _Alloc > &  _Right 
)
847  { // swap _Left and _Right unordered_multimaps
848  _Left.swap(_Right);
849  }
void swap(_Myt &_Right) _NOEXCEPT_OP(_Alty
Definition: unordered_map:734