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

hash_map::mapped_type
typedef Ty mapped_type;
The type is a synonym for the template parameter Ty.
hash_map::max_size
size_type max_size() const;
The member function returns the length of the longest sequence that the object can control.
hash_map::operator[]
Ty& operator[](const Key& keyval);
The member function determines the iterator where as the return value of insert(
value_type(keyval, Ty()). (It inserts an element with the specified key if no such
element exists.) It then returns a reference to (*where).second.
hash_map::pointer
typedef Alloc::pointer pointer;
The type describes an object that can serve as a pointer to an element of the controlled
sequence.
hash_map::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_map::reference
typedef Alloc::reference reference;
The type describes an object that can serve as a reference to an element of the controlled
sequence.
hash_map::rend
const_reverse_iterator rend() const;
reverse_iterator rend();