[#bsl-unordered_multiset-09e] = xref:bsl.adoc[bsl]::xref:bsl/unordered_multiset-06c.adoc[unordered_multiset<KEY>] :relfileprefix: ../ :mrdocs: Deduce the template parameter `KEY` from the `value_type` of the initializer_list supplied to the constructor of `unordered_multiset`. This deduction guide does not participate unless the supplied allocator is convertible to `bsl::allocator<KEY>`. == Synopsis Declared in `<bslstl_unorderedmultiset.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< class KEY, class ALLOC, class DEFAULT_ALLOCATOR = xref:bsl/allocator-0df.adoc[bsl::allocator<KEY>]> requires bsl::is_convertible_v<ALLOC *, DEFAULT_ALLOCATOR> xref:bsl/unordered_multiset-06c.adoc[unordered_multiset<KEY>]( std::initializer_list<KEY>, bsl::allocator_traits<DEFAULT_ALLOCATOR>::size_type, ALLOC*) -> xref:bsl/unordered_multiset-06c.adoc[unordered_multiset<KEY>]; ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#