Standard C++ Library Reference ISO/IEC (VERSION3)
multimap::begin
const_iterator begin() const;
iterator begin();
The member function returns a bidirectional iterator that points at the first element of the
sequence (or just beyond the end of an empty sequence).
multimap::clear
void clear();
The member function calls erase( begin(), end()).
multimap::const_iterator
typedef T1 const_iterator;
The type describes an object that can serve as a constant bidirectional iterator for the controlled
sequence. It is described here as a synonym for the implementation-defined type T1.
multimap::const_pointer
typedef Alloc::const_pointer const_pointer;
The type describes an object that can serve as a constant pointer to an element of the controlled
sequence.
multimap::const_reference
typedef Alloc::const_reference const_reference;
The type describes an object that can serve as a constant reference to an element of the
controlled sequence.
multimap::const_reverse_iterator
typedef reverse_iterator<const_iterator>
const_reverse_iterator;
The type describes an object that can serve as a constant reverse bidirectional iterator for the
controlled sequence.