[#bsl-unordered_multimap-0b6] = xref:bsl.adoc[bsl]::xref:bsl/unordered_multimap-0b0.adoc[unordered_multimap<KEY, VALUE, bsl::hash<KEY>, bsl::equal_to<KEY>, ALLOCATOR>] :relfileprefix: ../ :mrdocs: Deduce the template parameters `KEY` and `VALUE` from the `value_type` 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 ALLOCATOR, 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>]> requires bsl::IsStdAllocator_v<ALLOCATOR> xref:bsl/unordered_multimap-0b0.adoc[unordered_multimap<KEY, VALUE, bsl::hash<KEY>, bsl::equal_to<KEY>, ALLOCATOR>]( INPUT_ITERATOR, INPUT_ITERATOR, ALLOCATOR) -> xref:bsl/unordered_multimap-0b0.adoc[unordered_multimap<KEY, VALUE, bsl::hash<KEY>, bsl::equal_to<KEY>, ALLOCATOR>]; ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#