[#bsl-stack-06f] = xref:bsl.adoc[bsl]::xref:bsl/stack-05.adoc[stack<TYPE, deque<TYPE, ALLOCATOR>>] :relfileprefix: ../ :mrdocs: Deduce the template parameters `VALUE` and `CONTAINER` from the parameters supplied to the constructor of `stack`. This deduction guide does not participate unless the `ALLOCATOR` parameter meets the requirements for a standard allocator. == Synopsis Declared in `<bslstl_stack.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< class INPUT_ITER, class ALLOCATOR, class TYPE = xref:BloombergLP/bslstl/IteratorUtil/IterVal_t.adoc[BloombergLP::bslstl::IteratorUtil::IterVal_t<INPUT_ITER>]> requires IsStdAllocator_v<ALLOCATOR> xref:bsl/stack-05.adoc[stack<TYPE, deque<TYPE, ALLOCATOR>>]( INPUT_ITER, INPUT_ITER, ALLOCATOR) -> xref:bsl/stack-05.adoc[stack<TYPE, deque<TYPE, ALLOCATOR>>]; ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#