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

begin(), left. end(), right.begin(), right.end(),
left.value_comp()).
operator<=
template<class Key, class Ty, class Pr, class Alloc>
bool operator<=(
const map <Key, Ty, Pr, Alloc>& left,
const map <Key, Ty, Pr, Alloc>& right);
template<class Key, class Ty, class Pr, class Alloc>
bool operator<=(
const multimap <Key, Ty, Pr, Alloc>& left,
const multimap <Key, Ty, Pr, Alloc>& right);
The template function returns !(right < left).
operator>
template<class Key, class Ty, class Pr, class Alloc>
bool operator>(
const map <Key, Ty, Pr, Alloc>& left,
const map <Key, Ty, Pr, Alloc>& right);
template<class Key, class Ty, class Pr, class Alloc>
bool operator>(
const multimap <Key, Ty, Pr, Alloc>& left,
const multimap <Key, Ty, Pr, Alloc>& right);
The template function returns right < left.
operator>=
template<class Key, class Ty, class Pr, class Alloc>
bool operator>=(
const map <Key, Ty, Pr, Alloc>& left,
const map <Key, Ty, Pr, Alloc>& right);
template<class Key, class Ty, class Pr, class Alloc>
bool operator!=(
const multimap <Key, Ty, Pr, Alloc>& left,
const multimap <Key, Ty, Pr, Alloc>& right);
The template function returns !(left < right).