[#bsl-multimap-0e] = xref:bsl.adoc[bsl]::xref:bsl/multimap-0ae.adoc[multimap<KEY, VALUE, COMPARATOR>] :relfileprefix: ../ :mrdocs: Deduce the template parameters `KEY` and `VALUE` from the `value_type` of the initializer_list supplied to the constructor of `multimap`. Deduce the template parameter `COMPARATOR` from the other parameters passed to the constructor. This deduction guide does not participate unless the supplied allocator is convertible to `bsl::allocator<bsl::pair<const KEY, VALUE>>`. == Synopsis Declared in `<bslstl_multimap.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< class KEY, class VALUE, class COMPARATOR, class ALLOC, 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/multimap-0ae.adoc[multimap<KEY, VALUE, COMPARATOR>]( std::initializer_list<pair<KEY const, VALUE>>, COMPARATOR, ALLOC*) -> xref:bsl/multimap-0ae.adoc[multimap<KEY, VALUE, COMPARATOR>]; ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#