[#bsl-unordered_multiset-06c-2constructor-0e0d] = xref:bsl.adoc[bsl]::xref:bsl/unordered_multiset-06c.adoc[unordered_multiset]::unordered_multiset :relfileprefix: ../../ :mrdocs: Create an unordered multiset by moving from `original`. == Synopsis Declared in `<bslstl_unorderedmultiset.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- unordered_multiset(xref:BloombergLP/bslmf/MovableRef.adoc[BloombergLP::bslmf::MovableRef<unordered_multiset>] original); ---- == Description Create an unordered multiset having the same value as the specified `original` object by moving (in constant time) the contents of `original` to the new unordered multiset. Use a copy of `original.hash_function()` to generate hash values for the keys contained in this unordered multiset. Use a copy of `original.key_eq()` to verify that two keys are equivalent. The allocator associated with `original` is propagated for use in the newly‐created unordered multiset. `original` is left in a valid but unspecified state. == Parameters [cols="1,4"] |=== | Name| Description | *original* | unordered multiset to move from |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#