[#BloombergLP-bdlcc-Deque-2constructor-0c] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlcc.adoc[bdlcc]::xref:BloombergLP/bdlcc/Deque.adoc[Deque]::Deque :relfileprefix: ../../../ :mrdocs: Constructors == Synopses Declared in `<bdlcc_deque.h>` Create a container of objects of (template parameter) `TYPE`, with no high water mark, and use the specified `clockType` to indicate the epoch used for all time intervals (see {Supported Clock‐Types} in the component documentation). If `basicAllocator` is 0, the currently installed default allocator is used. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- explicit xref:BloombergLP/bdlcc/Deque/2constructor-09.adoc[Deque](xref:BloombergLP/bslma/Allocator.adoc[bslma::Allocator]* basicAllocator = 0); ---- [.small]#xref:BloombergLP/bdlcc/Deque/2constructor-09.adoc[_» more..._]# Same as the preceding overload, using the specified `clockType` for timed operations. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- explicit xref:BloombergLP/bdlcc/Deque/2constructor-07f.adoc[Deque]( xref:BloombergLP/bsls/SystemClockType/Enum.adoc[bsls::SystemClockType::Enum] clockType, xref:BloombergLP/bslma/Allocator.adoc[bslma::Allocator]* basicAllocator = 0); ---- [.small]#xref:BloombergLP/bdlcc/Deque/2constructor-07f.adoc[_» more..._]# Create a container of objects of (template parameter) `TYPE`, with the specified `highWaterMark`, and use the specified `clockType` to indicate the epoch used for all time intervals (see {Supported Clock‐Types} in the component documentation). Optionally specify a `basicAllocator` used to supply memory. If `basicAllocator` is 0, the currently installed default allocator is used. The behavior is undefined unless `highWaterMark > 0`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- explicit xref:BloombergLP/bdlcc/Deque/2constructor-07d.adoc[Deque]( std::size_t highWaterMark, xref:BloombergLP/bslma/Allocator.adoc[bslma::Allocator]* basicAllocator = 0); ---- [.small]#xref:BloombergLP/bdlcc/Deque/2constructor-07d.adoc[_» more..._]# Create a container having the same value as the specified `original` object. Optionally specify a `basicAllocator` used to supply memory. If `basicAllocator` is 0, the currently installed default allocator is used. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:BloombergLP/bdlcc/Deque/2constructor-0a.adoc[Deque]( xref:BloombergLP/bdlcc/Deque.adoc[Deque<TYPE>] const& original, xref:BloombergLP/bslma/Allocator.adoc[bslma::Allocator]* basicAllocator = 0); ---- [.small]#xref:BloombergLP/bdlcc/Deque/2constructor-0a.adoc[_» more..._]# Same as the preceding overload, using the specified `clockType` for timed operations. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:BloombergLP/bdlcc/Deque/2constructor-025.adoc[Deque]( std::size_t highWaterMark, xref:BloombergLP/bsls/SystemClockType/Enum.adoc[bsls::SystemClockType::Enum] clockType, xref:BloombergLP/bslma/Allocator.adoc[bslma::Allocator]* basicAllocator = 0); ---- [.small]#xref:BloombergLP/bdlcc/Deque/2constructor-025.adoc[_» more..._]# Create a container of objects of (template parameter) `TYPE` containing the sequence of elements in the specified range `[begin .. end)]`, having no high water mark, and use the specified `clockType` to indicate the epoch used for all time intervals (see {Supported Clock‐Types} in the component documentation). Optionally specify a `basicAllocator` used to supply memory. If `basicAllocator` is 0, the currently installed default allocator is used. Note that the items in the range are treated as `const` objects, copied without being modified. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class INPUT_ITER> xref:BloombergLP/bdlcc/Deque/2constructor-027.adoc[Deque]( INPUT_ITER begin, INPUT_ITER end, xref:BloombergLP/bslma/Allocator.adoc[bslma::Allocator]* basicAllocator = 0); ---- [.small]#xref:BloombergLP/bdlcc/Deque/2constructor-027.adoc[_» more..._]# Same as the preceding overload, using the specified `clockType` for timed operations. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class INPUT_ITER> xref:BloombergLP/bdlcc/Deque/2constructor-0d.adoc[Deque]( INPUT_ITER begin, INPUT_ITER end, xref:BloombergLP/bsls/SystemClockType/Enum.adoc[bsls::SystemClockType::Enum] clockType, xref:BloombergLP/bslma/Allocator.adoc[bslma::Allocator]* basicAllocator = 0); ---- [.small]#xref:BloombergLP/bdlcc/Deque/2constructor-0d.adoc[_» more..._]# Create a container of objects of (template parameter) `TYPE` containing the sequence of `TYPE` values in the specified range `[begin .. end)]` having the specified `highWaterMark`, and use the specified `clockType` to indicate the epoch used for all time intervals (see {Supported Clock‐Types} in the component documentation). Optionally specify a `basicAllocator` used to supply memory. If `basicAllocator` is 0, the currently installed default allocator is used. The behavior is undefined unless `highWaterMark > 0`. Note that if the number of elements in the range `[begin, end)]` exceeds `highWaterMark`, the effect will be the same as if the extra elements were added by forced pushes. Also note that the items in the range are treated as `const` objects, copied without being modified. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class INPUT_ITER> xref:BloombergLP/bdlcc/Deque/2constructor-06.adoc[Deque]( INPUT_ITER begin, INPUT_ITER end, std::size_t highWaterMark, xref:BloombergLP/bslma/Allocator.adoc[bslma::Allocator]* basicAllocator = 0); ---- [.small]#xref:BloombergLP/bdlcc/Deque/2constructor-06.adoc[_» more..._]# [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class INPUT_ITER> xref:BloombergLP/bdlcc/Deque/2constructor-04.adoc[Deque]( INPUT_ITER begin, INPUT_ITER end, std::size_t highWaterMark, xref:BloombergLP/bsls/SystemClockType/Enum.adoc[bsls::SystemClockType::Enum] clockType, xref:BloombergLP/bslma/Allocator.adoc[bslma::Allocator]* basicAllocator = 0); ---- [.small]#xref:BloombergLP/bdlcc/Deque/2constructor-04.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#