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