[#bsl-unordered_multiset-06c-insert-0ef] = xref:bsl.adoc[bsl]::xref:bsl/unordered_multiset-06c.adoc[unordered_multiset]::insert :relfileprefix: ../../ :mrdocs: Insert each element from the `values` initializer list. == Synopsis Declared in `<bslstl_unorderedmultiset.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void insert(std::initializer_list<KEY> values); ---- == Description Insert into this unordered multiset the value of each `value_type` object in the specified `values` initializer list. This method requires that the (template parameter) type `KEY` be `copy‐insertable` into this unordered multiset (see {Requirements on `KEY`}). == Parameters [cols="1,4"] |=== | Name| Description | *values* | initializer list of keys to insert |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#