[#absl-chunked_queue-2constructor-09] = xref:absl.adoc[absl]::xref:absl/chunked_queue.adoc[chunked_queue]::chunked_queue :relfileprefix: ../../ :mrdocs: Constructs a queue with the contents of the range [first, last).] == Synopsis Declared in `<absl/container/chunked_queue.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename Iter> requires base_internal::IsAtLeastInputIterator<Iter>::value chunked_queue( Iter first, Iter last, xref:absl/chunked_queue/allocator_type.adoc[allocator_type] const& alloc = allocator_type()); ---- == Parameters [cols="1,4"] |=== | Name| Description | *first* | An iterator to the beginning of the range. | *last* | An iterator past the end of the range. | *alloc* | The allocator to use. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#