[#bsl-queue-0ad] = xref:bsl.adoc[bsl]::xref:bsl/queue-0a5.adoc[queue<t_TYPE, deque<t_TYPE, t_ALLOCATOR>>] :relfileprefix: ../ :mrdocs: Deduce the template parameters `VALUE` and `ALLOCATOR` from the parameters supplied to the constructor of `queue`. This deduction guide does not participate unless the `t_ALLOCATOR` parameter meets the requirements for a standard allocator. == Synopsis Declared in `<bslstl_queue.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< ranges::input_range t_RANGE, class t_ALLOCATOR, class t_TYPE = ranges::range_value_t<t_RANGE>> requires IsStdAllocator_v<t_ALLOCATOR> xref:bsl/queue-0a5.adoc[queue<t_TYPE, deque<t_TYPE, t_ALLOCATOR>>]( std::from_range_t, t_RANGE&&, t_ALLOCATOR) -> xref:bsl/queue-0a5.adoc[queue<t_TYPE, deque<t_TYPE, t_ALLOCATOR>>]; ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#