[#bsl-multiset-03-emplace_hint] = xref:bsl.adoc[bsl]::xref:bsl/multiset-03.adoc[multiset]::emplace_hint :relfileprefix: ../../ :mrdocs: Insert into this multiset 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` (in amortized constant time if the specified `hint` is a valid immediate successor to the `value_type` object constructed from `args`). Return an iterator referring to the newly created and inserted object in this multiset. If `hint` is not a valid immediate successor to the `value_type` object implied by `args`, this operation has `O[log(N)]` complexity where `N` is the size of this multiset. This method requires that the (template parameter) type `KEY` be `emplace‐constructible` from `args` (see {Requirements on `KEY`}). The behavior is undefined unless `hint` is an iterator in the range `[begin() .. end()]` (both endpoints included). == Synopsis Declared in `<bslstl_multiset.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class... Args> xref:bsl/multiset-03/iterator.adoc[multiset<KEY, COMPARATOR, ALLOCATOR>::iterator] emplace_hint( xref:bsl/multiset-03/const_iterator.adoc[const_iterator] hint, Args&&... args); ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#