absl::InlinedVector::InlinedVector

Creates an inlined vector with n copies of v.

Synopsis

Declared in <absl/container/inlined_vector.h>

InlinedVector(
    size_type n,
    const_reference v,
    allocator_type const& allocator = allocator_type());

Parameters

NameDescription
nThe number of elements to create.
vThe value to copy into each element.
allocatorThe allocator to use.