[#bsl-multimap-09] = xref:bsl.adoc[bsl]::xref:bsl/multimap-0ae.adoc[multimap<KEY, VALUE, std::less<KEY>, ALLOCATOR>] :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 `ALLOCATOR` from the other parameter passed to the constructor. This deduction guide does not participate unless the supplied allocator meets the requirements of a standard allocator. == Synopsis Declared in `<bslstl_multimap.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< class KEY, class VALUE, class ALLOCATOR> requires bsl::IsStdAllocator_v<ALLOCATOR> xref:bsl/multimap-0ae.adoc[multimap<KEY, VALUE, std::less<KEY>, ALLOCATOR>]( std::initializer_list<pair<KEY const, VALUE>>, ALLOCATOR) -> xref:bsl/multimap-0ae.adoc[multimap<KEY, VALUE, std::less<KEY>, ALLOCATOR>]; ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#