Standard C++ Library Reference ISO/IEC (VERSION3)
hash_multiset::key_compare
typedef Tr key_compare;
The type describes a traits object that behaves much like an object of class
hash_compare<Key, Pr>. In particular, it can compare two sort keys to determine the
relative order of two elements in the controlled sequence.
hash_multiset::key_type
typedef Key key_type;
The type describes the sort key object which constitutes each element of the controlled
sequence.
hash_multiset::lower_bound
const_iterator lower_bound(const Key& keyval) const;
The member function returns an iterator that designates the earliest element X in the controlled
sequence for which X has equivalent ordering to keyval. If no such element exists, the
function returns end().
hash_multiset::max_size
size_type max_size() const;
The member function returns the length of the longest sequence that the object can control.
hash_multiset::pointer
typedef Alloc::pointer pointer;
The type describes an object that can serve as a pointer to an element of the controlled
sequence.
hash_multiset::rbegin
const_reverse_iterator rbegin() const;
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.