[#bsl-multimap-0ae-insert-04c] = xref:bsl.adoc[bsl]::xref:bsl/multimap-0ae.adoc[multimap]::insert :relfileprefix: ../../ :mrdocs: Insert into this multimap a `value_type` object created from the specified `value`. If a range containing elements equivalent to `value_type` object already exists, insert the `value_type` object 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 `move‐insertable` into this multimap (see {Requirements on `KEY` and `VALUE`}), and the `value_type` be constructible from the (template parameter) `ALT_VALUE_TYPE`. == Synopsis Declared in `<bslstl_multimap.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class ALT_VALUE_TYPE> xref:bsl/multimap-0ae/iterator.adoc[iterator] insert(ALT_VALUE_TYPE&& value) requires std::is_constructible<value_type, ALT_VALUE_TYPE&&>::value; ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#