[#bsl-multiset-0a] = xref:bsl.adoc[bsl]::xref:bsl/multiset-03.adoc[multiset<KEY, COMPARATOR>] :relfileprefix: ../ :mrdocs: Deduce the template parameter `KEY` from the `value_type` of the iterators supplied to the constructor of `multiset`. Deduce the template parameter `COMPARATOR` from the other parameter passed to the constructor. This deduction guide does not participate unless the specified `ALLOC` is convertible to `bsl::allocator<KEY>`. == Synopsis Declared in `<bslstl_multiset.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< class INPUT_ITERATOR, class COMPARATOR, class ALLOC, class KEY = xref:BloombergLP/bslstl/IteratorUtil/IterVal_t.adoc[BloombergLP::bslstl::IteratorUtil::IterVal_t<INPUT_ITERATOR>], class DEFAULT_ALLOCATOR = xref:bsl/allocator-0df.adoc[bsl::allocator<KEY>]> requires bsl::is_convertible_v<ALLOC *, DEFAULT_ALLOCATOR> xref:bsl/multiset-03.adoc[multiset<KEY, COMPARATOR>]( INPUT_ITERATOR, INPUT_ITERATOR, COMPARATOR, ALLOC*) -> xref:bsl/multiset-03.adoc[multiset<KEY, COMPARATOR>]; ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#