absl::chunked_queue::chunked_queue

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

NameDescription
firstAn iterator to the beginning of the range.
lastAn iterator past the end of the range.
allocThe allocator to use.