Insert a copy of value into this multimap.
Synopsis
Declared in <bslstl_multimap.h>
multimap<KEY, VALUE, COMPARATOR, ALLOCATOR>::iterator
insert(value_type const& value);
Description
Insert the specified value into this multimap. If a range containing elements equivalent to value already exists, insert the value at the end of that range. Return an iterator referring to the newly inserted value_type object. This method requires that the (template parameter) types KEY and VALUE both be copy‐insertable into this multimap (see {Requirements on KEY and VALUE}).
Return Value
iterator referring to the newly inserted element
Parameters
Name |
Description |
value |
element to copy‐insert |
Created with MrDocs