[#bsl-multiset-060] = xref:bsl.adoc[bsl]::xref:bsl/multiset-03.adoc[multiset<KEY, COMPARATOR, ALLOCATOR>] :relfileprefix: ../ :mrdocs: Deduce the template parameter `KEY` from the `value_type` of the iterators supplied to the constructor of `multiset`. Deduce the template parameters `COMPARATOR` and `ALLOCATOR` from the other parameters passed to the constructor. This guide does not participate unless the supplied (or defaulted) `ALLOCATOR` meets the requirements of a standard allocator. == Synopsis Declared in `<bslstl_multiset.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< class INPUT_ITERATOR, class KEY = xref:BloombergLP/bslstl/IteratorUtil/IterVal_t.adoc[BloombergLP::bslstl::IteratorUtil::IterVal_t<INPUT_ITERATOR>], class COMPARATOR = std::less<KEY>, class ALLOCATOR = xref:bsl/allocator-0df.adoc[bsl::allocator<KEY>]> requires !bsl::IsStdAllocator_v<COMPARATOR> && bsl::IsStdAllocator_v<ALLOCATOR> xref:bsl/multiset-03.adoc[multiset<KEY, COMPARATOR, ALLOCATOR>]( INPUT_ITERATOR, INPUT_ITERATOR, COMPARATOR, ALLOCATOR) -> xref:bsl/multiset-03.adoc[multiset<KEY, COMPARATOR, ALLOCATOR>]; ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#