Resizes the container to contain new_size elements.
Declared in <absl/container/chunked_queue.h>
void
resize(
size_type new_size,
T const& value);
If new_size > size(), additional copies of value are appended. If new_size < size(), elements are removed from the end.
| Name | Description |
|---|---|
| new_size | The new number of elements. |
| value | The value to copy into any appended elements. |