Overload of InlinedVector::resize(...) that resizes the inlined vector to contain n elements.
Declared in <absl/container/inlined_vector.h>
void
resize(
size_type n,
const_reference v);
NOTE: if n is smaller than size(), extra elements are destroyed. If n is larger than size(), new elements are copied-constructed from v.
| Name | Description |
|---|---|
| n | The new number of elements. |
| v | The value to copy into any new elements. |