[#bsl-unordered_multiset-06c-insert-08] = xref:bsl.adoc[bsl]::xref:bsl/unordered_multiset-06c.adoc[unordered_multiset]::insert :relfileprefix: ../../ :mrdocs: Insert the specified `value` into this unordered multiset. If one or more keys equivalent to `value` already exist in this unordered multiset, this method is guaranteed to insert `value` in a position contiguous to one of those equivalent keys. Return an iterator referring to the newly inserted `value_type` object that is equivalent to `value`. This method requires that the (template parameter) type `KEY` be `move‐insertable` into this unordered multiset (see {Requirements on `KEY`}). == Synopsis Declared in `<bslstl_unorderedmultiset.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/unordered_multiset-06c/iterator.adoc[unordered_multiset<KEY, HASH, EQUAL, ALLOCATOR>::iterator] insert(xref:BloombergLP/bslmf/MovableRef.adoc[BloombergLP::bslmf::MovableRef<value_type>] value); ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#