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

hash_multimap::max_size
size_type max_size() const;
The member function returns the length of the longest sequence that the object can control.
hash_multimap::pointer
typedef Alloc::pointer pointer;
The type describes an object that can serve as a pointer to an element of the controlled
sequence.
hash_multimap::rbegin
const_reverse_iterator rbegin() const;
reverse_iterator rbegin();
The member function returns a reverse bidirectional iterator that points just beyond the end of
the controlled sequence. Hence, it designates the beginning of the reverse sequence.
hash_multimap::reference
typedef Alloc::reference reference;
The type describes an object that can serve as a reference to an element of the controlled
sequence.
hash_multimap::rend
const_reverse_iterator rend() const;
reverse_iterator rend();
The member function returns a reverse bidirectional iterator that points at the first element of
the sequence (or just beyond the end of an empty sequence). Hence, it designates the end of the
reverse sequence.
hash_multimap::reverse_iterator
typedef reverse_iterator<iterator> reverse_iterator;
The type describes an object that can serve as a reverse bidirectional iterator for the controlled
sequence.