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