template <class Key, class T, class Compare, class Allocator>
bool operator== ( const multimap<Key,T,Compare,Allocator>& x,
const multimap<Key,T,Compare,Allocator>& y );
template <class Key, class T, class Compare, class Allocator>
bool operator< ( const multimap<Key,T,Compare,Allocator>& x,
const multimap<Key,T,Compare,Allocator>& y );
template <class Key, class T, class Compare, class Allocator>
bool operator!= ( const multimap<Key,T,Compare,Allocator>& x,
const multimap<Key,T,Compare,Allocator>& y );
template <class Key, class T, class Compare, class Allocator>
bool operator> ( const multimap<Key,T,Compare,Allocator>& x,
const multimap<Key,T,Compare,Allocator>& y );
template <class Key, class T, class Compare, class Allocator>
bool operator>= ( const multimap<Key,T,Compare,Allocator>& x,
const multimap<Key,T,Compare,Allocator>& y );
template <class Key, class T, class Compare, class Allocator>
bool operator<= ( const multimap<Key,T,Compare,Allocator>& x,
const multimap<Key,T,Compare,Allocator>& y );
These overloaded global operator functions perform the appropriate comparison operation between
.
.
operation (less-than) defined between two objects of that type.
otherwise.