[#bsl-deque-04] = xref:bsl.adoc[bsl]::xref:bsl/deque-0c.adoc[deque<VALUE>] :relfileprefix: ../ :mrdocs: Deduce the template parameter `VALUE` from the corresponding parameter 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 SIZE_TYPE, class VALUE, class ALLOC, class DEFAULT_ALLOCATOR = xref:bsl/allocator-0df.adoc[bsl::allocator<VALUE>]> requires bsl::is_convertible_v< SIZE_TYPE, typename bsl::allocator_traits<DEFAULT_ALLOCATOR>::size_type> && bsl::is_convertible_v<ALLOC *, DEFAULT_ALLOCATOR> xref:bsl/deque-0c.adoc[deque<VALUE>]( SIZE_TYPE, VALUE, ALLOC*) -> xref:bsl/deque-0c.adoc[deque<VALUE>]; ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#