absl::chunked_queue::chunked_queue

Constructs a queue with count copies of value.

Synopsis

Declared in <absl/container/chunked_queue.h>

chunked_queue(
    size_type count,
    T const& value,
    allocator_type const& alloc = allocator_type());

Parameters

NameDescription
countThe number of elements to create.
valueThe value to copy into each element.
allocThe allocator to use.