value_type | Pair Associative Container | The type of object, pair<const key_type, data_type>, stored in the multimap. |
key_compare | Sorted Associative Container | Function object that compares two keys for ordering. |
value_compare | Sorted Associative Container | Function object that compares two values for ordering. |
pointer | Container | Pointer to T. |
reference | Container | Reference to T |
const_reference | Container | Const reference to T |
size_type | Container | An unsigned integral type. |
difference_type | Container | A signed integral type. |
iterator | Container | Iterator used to iterate through a multimap. [1] |
const_iterator | Container | Const iterator used to iterate through a multimap. |
reverse_iterator | Reversible Container | Iterator used to iterate backwards through a multimap. [1] |
const_reverse_iterator | Reversible Container | Const iterator used to iterate backwards through a multimap. |
iterator begin() | Container | Returns an iterator pointing to the beginning of the multimap. |
iterator end() | Container | Returns an iterator pointing to the end of the multimap. |
const_iterator begin() const | Container | Returns a const_iterator pointing to the beginning of the multimap. |
const_iterator end() const | Container | Returns a const_iterator pointing to the end of the multimap. |
reverse_iterator rbegin() | Reversible Container | Returns a reverse_iterator pointing to the beginning of the reversed multimap. |
reverse_iterator rend() | Reversible Container | Returns a reverse_iterator pointing to the end of the reversed multimap. |