Standard C++ Library Reference ISO/IEC (VERSION3)
 const hash_multimap <Key, Ty, Tr, Alloc>& left,
 const hash_multimap <Key, Ty, Tr, Alloc>& right);
The template function returns right < left.
operator>=
template<class Key, class Ty, class Tr, class Alloc>
 bool operator>=(
 const hash_map <Key, Ty, Tr, Alloc>& left,
 const hash_map <Key, Ty, Tr, Alloc>& right);
template<class Key, class Ty, class Tr, class Alloc>
 bool operator!=(
 const hash_multimap <Key, Ty, Tr, Alloc>& left,
 const hash_multimap <Key, Ty, Tr, Alloc>& right);
The template function returns !(left < right).
swap
template<class Key, class Ty, class Tr, class Alloc>
 void swap(
 hash_map <Key, Ty, Tr, Alloc>& left,
 hash_map <Key, Ty, Tr, Alloc>& right);
template<class Key, class Ty, class Tr, class Alloc>
 void swap(
 hash_multimap <Key, Ty, Tr, Alloc>& left,
 hash_multimap <Key, Ty, Tr, Alloc>& right);
The template function executes left.swap(right).
See also the TableofContents and the Index.
Copyright © 1998-2001 by P.J. Plauger. All rights reserved.










