[#absl-InlinedVector-2constructor-02] = xref:absl.adoc[absl]::xref:absl/InlinedVector.adoc[InlinedVector]::InlinedVector :relfileprefix: ../../ :mrdocs: Creates an inlined vector with `n` copies of `v`. == Synopsis Declared in `<absl/container/inlined_vector.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- InlinedVector( xref:absl/InlinedVector/size_type.adoc[size_type] n, xref:absl/InlinedVector/const_reference.adoc[const_reference] v, xref:absl/InlinedVector/allocator_type.adoc[allocator_type] const& allocator = allocator_type()); ---- == Parameters [cols="1,4"] |=== | Name| Description | *n* | The number of elements to create. | *v* | The value to copy into each element. | *allocator* | The allocator to use. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#