Reference
C Library
IOstream Library
Strings library
STL Containers
STL Algorithms
Miscellaneous
STL Containers
bitset
deque
list
map
multimap
multiset
priority_queue
queue
set
stack
vector
map
comparison operators
map::map
map::~map
member functions:
map::begin
map::clear
map::count
map::empty
map::end
map::equal_range
map::erase
map::find
map::get_allocator
map::insert
map::key_comp
map::lower_bound
map::max_size
map::operator=
map::operator[]
map::rbegin
map::rend
map::size
map::swap
map::upper_bound
map::value_comp


comparison operators

function
<map>
template <class Key, class T, class Compare, class Allocator>
  bool operator== ( const map<Key,T,Compare,Allocator>& x,
                    const map<Key,T,Compare,Allocator>& y );
template <class Key, class T, class Compare, class Allocator>
  bool operator<  ( const map<Key,T,Compare,Allocator>& x,
                    const map<Key,T,Compare,Allocator>& y );
template <class Key, class T, class Compare, class Allocator>
  bool operator!= ( const map<Key,T,Compare,Allocator>& x,
                    const map<Key,T,Compare,Allocator>& y );
template <class Key, class T, class Compare, class Allocator>
  bool operator>  ( const map<Key,T,Compare,Allocator>& x,
                    const map<Key,T,Compare,Allocator>& y );
template <class Key, class T, class Compare, class Allocator>
  bool operator>= ( const map<Key,T,Compare,Allocator>& x,
                    const map<Key,T,Compare,Allocator>& y );
template <class Key, class T, class Compare, class Allocator>
  bool operator<= ( const map<Key,T,Compare,Allocator>& x,
                    const map<Key,T,Compare,Allocator>& y );

Global comparison operator functions

These overloaded global operator functions perform the appropriate comparison operation between map containers x and y.

Operations == and != are performed by comparing the elements using algorithm equal.

Operations <, >, <= and >= are performed by using algorithm lexicographical_compare, which requires that the type of the elements (T) has the < operation (less-than) defined between two objects of that type.

These operators are overloaded in header .

Parameters

x, y
map containers, having both the same template parameters (Key, T, Compare and Allocator).

Return Value

true if the condition holds, and false otherwise.