Constructs a queue with the contents of the range [first, last).]
Synopsis
Declared in <absl/container/chunked_queue.h>
template<typename Iter>
requires base_internal::IsAtLeastInputIterator<Iter>::value
chunked_queue(
Iter first,
Iter last,
allocator_type const& alloc = allocator_type());
Parameters
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. |
Created with MrDocs