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

Classes

class  _Uset_traits< _Kty, _Tr, _Alloc, _Mfl >
 
class  unordered_set< _Kty, _Hasher, _Keyeq, _Alloc >
 
class  unordered_multiset< _Kty, _Hasher, _Keyeq, _Alloc >
 

Macros

#define _UNORDERED_SET_
 

Functions

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

Macro Definition Documentation

#define _UNORDERED_SET_

Function Documentation

template<class _Kty , class _Hasher , class _Keyeq , class _Alloc >
bool operator!= ( const unordered_set< _Kty, _Hasher, _Keyeq, _Alloc > &  _Left,
const unordered_set< _Kty, _Hasher, _Keyeq, _Alloc > &  _Right 
)
inline
300  { // test for unordered_set inequality
301  return (!(_Left == _Right));
302  }
template<class _Kty , class _Hasher , class _Keyeq , class _Alloc >
bool operator!= ( const unordered_multiset< _Kty, _Hasher, _Keyeq, _Alloc > &  _Left,
const unordered_multiset< _Kty, _Hasher, _Keyeq, _Alloc > &  _Right 
)
inline
555  { // test for unordered_multiset inequality
556  return (!(_Left == _Right));
557  }
template<class _Kty , class _Hasher , class _Keyeq , class _Alloc >
bool operator== ( const unordered_set< _Kty, _Hasher, _Keyeq, _Alloc > &  _Left,
const unordered_set< _Kty, _Hasher, _Keyeq, _Alloc > &  _Right 
)
inline
289  { // test for unordered_set equality
290  return (_Hash_equal(_Left, _Right));
291  }
bool _Hash_equal(const _Hash< _Traits > &_Left, const _Hash< _Traits > &_Right)
Definition: xhash:958
template<class _Kty , class _Hasher , class _Keyeq , class _Alloc >
bool operator== ( const unordered_multiset< _Kty, _Hasher, _Keyeq, _Alloc > &  _Left,
const unordered_multiset< _Kty, _Hasher, _Keyeq, _Alloc > &  _Right 
)
inline
544  { // test for unordered_multiset equality
545  return (_Hash_equal(_Left, _Right));
546  }
bool _Hash_equal(const _Hash< _Traits > &_Left, const _Hash< _Traits > &_Right)
Definition: xhash:958
template<class _Kty , class _Hasher , class _Keyeq , class _Alloc >
void swap ( unordered_set< _Kty, _Hasher, _Keyeq, _Alloc > &  _Left,
unordered_set< _Kty, _Hasher, _Keyeq, _Alloc > &  _Right 
)
278  { // swap _Left and _Right unordered_sets
279  _Left.swap(_Right);
280  }
void swap(_Myt &_Right) _NOEXCEPT_OP(_Alty
Definition: unordered_set:205
template<class _Kty , class _Hasher , class _Keyeq , class _Alloc >
void swap ( unordered_multiset< _Kty, _Hasher, _Keyeq, _Alloc > &  _Left,
unordered_multiset< _Kty, _Hasher, _Keyeq, _Alloc > &  _Right 
)
533  { // swap _Left and _Right unordered_multisets
534  _Left.swap(_Right);
535  }
void swap(_Myt &_Right) _NOEXCEPT_OP(_Alty
Definition: unordered_set:460