Standard C++ Library Class Reference

Iterators
iterator begin() ;
Returns a bidirectional iterator pointing to the first element stored in the multimap. "First" is
defined by the multimap's comparison operator, Compare.
const_iterator begin() const;
Returns a const_iterator pointing to the first element stored in the multimap. "First" is defined by
the multimap's comparison operator, Compare.
iterator end() ;
Returns a bidirectional iterator pointing to the last element stored in the multimap, i.e. the
off-the-end value.
const_iterator end() const;
Returns a const_iterator pointing to the last element stored in the multimap.
reverse_iterator rbegin() ;
Returns a reverse_iterator pointing to the first element stored in the multimap. "First" is defined
by the multimap's comparison operator, Compare.
const_reverse_iterator rbegin() const;
Returns a const_reverse_iterator pointing to the first element stored in the multimap.
reverse_iterator rend() ;
Returns a reverse_iterator pointing to the last element stored in the multimap, i.e., the
off-the-end value.
const_reverse_iterator rend() const;
Returns a const_reverse_iterator pointing to the last element stored in the multimap.
Member Functions
void
clear ();
Erases all elements from the self.
size_type
count (const key_type& x) const;
Returns the number of elements in the multimap with the key value x.
bool
empty() const;
Returns true if the multimap is empty, false otherwise.
pair<iterator,iterator>
equal_range (const key_type& x);
pair<const_iterator,const_iterator>