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 meets the requirements of a standard allocator.
Synopsis
Declared in <bslstl_deque.h>
template<
class INPUT_ITERATOR,
class ALLOCATOR,
class VALUE = BloombergLP::bslstl::IteratorUtil::IterVal_t<INPUT_ITERATOR>>
requires bsl::IsStdAllocator_v<ALLOCATOR>
deque<VALUE, ALLOCATOR>(
INPUT_ITERATOR,
INPUT_ITERATOR,
ALLOCATOR) → deque<VALUE, ALLOCATOR>;
Created with MrDocs