<<< Map summary | Index | std::multimap::equal_range >>> |
Similar to map, but allows multiple values for one key
Doesn't provide operator[ ]
insert( ) returns an iterator, since it can't fail
Still supports iteration in order of keys,
but no order is assumed on the values.
Now count( key ) can return any size, corresponding to the number of elements with the given key.
multimap has find( key ), but this is not as useful as equal_range( key )
<<< Map summary | Index | std::multimap::equal_range >>> |