[#bsl-multimap-0ae-emplace] = xref:bsl.adoc[bsl]::xref:bsl/multimap-0ae.adoc[multimap]::emplace :relfileprefix: ../../ :mrdocs: Insert into this multimap a newly‐created `value_type` object, constructed by forwarding `get_allocator()` (if required) and the specified (variable number of) `args` to the corresponding constructor of `value_type`. Return an iterator referring to the newly created and inserted object in this multimap. This method requires that the (template parameter) types `KEY` and `VALUE` both be `emplace‐constructible` from `args` (see {Requirements on `KEY` and `VALUE`}). == Synopsis Declared in `<bslstl_multimap.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class... Args> xref:bsl/multimap-0ae/iterator.adoc[multimap<KEY, VALUE, COMPARATOR, ALLOCATOR>::iterator] emplace(Args&&... args); ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#