Standard C++ Library Reference ISO/IEC (VERSION3)

The template function returns !(right < left).
operator>
template<class Key, class Pr, class Alloc>
bool operator>(
const set <Key, Pr, Alloc>& left,
const set <Key, Pr, Alloc>& right);
template<class Key, class Pr, class Alloc>
bool operator>(
const multiset <Key, Pr, Alloc>& left,
const multiset <Key, Pr, Alloc>& right);
The template function returns right < left.
operator>=
template<class Key, class Pr, class Alloc>
bool operator>=(
const set <Key, Pr, Alloc>& left,
const set <Key, Pr, Alloc>& right);
template<class Key, class Pr, class Alloc>
bool operator>=(
const multiset <Key, Pr, Alloc>& left,
const multiset <Key, Pr, Alloc>& right);
The template function returns !(left < right).
set
allocator_type · begin · clear · const_iterator · const_pointer
· const_reference · const_reverse_iterator · count ·
difference_type · empty · end · equal_range · erase · find ·
get_allocator · insert · iterator · key_comp · key_compare ·
key_type · lower_bound · max_size · pointer · rbegin · reference
· rend · reverse_iterator · set · size · size_type · swap ·
upper_bound · value_comp · value_compare · value_type
template<class Key, class Pr = less<Key>,
class Alloc = allocator<Key> >
class set {