Constructs a queue with count copies of value.
Declared in <absl/container/chunked_queue.h>
chunked_queue(
size_type count,
T const& value,
allocator_type const& alloc = allocator_type());
| Name | Description |
|---|---|
| count | The number of elements to create. |
| value | The value to copy into each element. |
| alloc | The allocator to use. |