[#bsl-unordered_multiset-00df] = xref:bsl.adoc[bsl]::xref:bsl/unordered_multiset-06c.adoc[unordered_multiset<KEY, HASH, bsl::equal_to<KEY>, ALLOCATOR>] :relfileprefix: ../ :mrdocs: Deduce the template parameter `KEY` from the `value_type` of the initializer_list supplied to the constructor of `unordered_multiset`. Deduce the template parameters `HASH` and `ALLOCATOR` from the other parameters passed to the constructor. This deduction guide does not participate unless the supplied `HASH` is invocable with a `KEY`, and the supplied allocator meets the requirements of a standard allocator. == Synopsis Declared in `<bslstl_unorderedmultiset.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< class KEY, class HASH, class ALLOCATOR> requires std::is_invocable_v<HASH, const KEY &> && bsl::IsStdAllocator_v<ALLOCATOR> xref:bsl/unordered_multiset-06c.adoc[unordered_multiset<KEY, HASH, bsl::equal_to<KEY>, ALLOCATOR>]( std::initializer_list<KEY>, bsl::allocator_traits<ALLOCATOR>::size_type, HASH, ALLOCATOR) -> xref:bsl/unordered_multiset-06c.adoc[unordered_multiset<KEY, HASH, bsl::equal_to<KEY>, ALLOCATOR>]; ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#