[#bsl-unordered_multimap-07] = xref:bsl.adoc[bsl]::xref:bsl/unordered_multimap-0b0.adoc[unordered_multimap<KEY, VALUE>] :relfileprefix: ../ :mrdocs: of the iterators supplied to the constructor of `unordered_multimap`. Deduce the template parameter `ALLOCATOR` from the other parameter passed to the constructor of `unordered_multimap`. This deduction guide does not participate unless the supplied allocator meets the requirements of a standard allocator. == Synopsis Declared in `<bslstl_unorderedmultimap.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< class INPUT_ITERATOR, class ALLOC, class KEY = xref:BloombergLP/bslstl/IteratorUtil/IterKey_t.adoc[BloombergLP::bslstl::IteratorUtil::IterKey_t<INPUT_ITERATOR>], class VALUE = xref:BloombergLP/bslstl/IteratorUtil/IterMapped_t.adoc[BloombergLP::bslstl::IteratorUtil::IterMapped_t<INPUT_ITERATOR>], class DEFAULT_ALLOCATOR = xref:bsl/allocator-0df.adoc[bsl::allocator<bsl::pair<KEY const, VALUE>>]> requires bsl::is_convertible_v<ALLOC *, DEFAULT_ALLOCATOR> xref:bsl/unordered_multimap-0b0.adoc[unordered_multimap<KEY, VALUE>]( INPUT_ITERATOR, INPUT_ITERATOR, bsl::allocator_traits<DEFAULT_ALLOCATOR>::size_type, ALLOC*) -> xref:bsl/unordered_multimap-0b0.adoc[unordered_multimap<KEY, VALUE>]; ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#