[#absl-FixedArray-2constructor-00] = xref:absl.adoc[absl]::xref:absl/FixedArray.adoc[FixedArray]::FixedArray :relfileprefix: ../../ :mrdocs: Creates an array initialized with `n` copies of `val`. == Synopsis Declared in `<absl/container/fixed_array.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- FixedArray( xref:absl/FixedArray/size_type.adoc[size_type] n, xref:absl/FixedArray/value_type.adoc[value_type] const& val, xref:absl/FixedArray/allocator_type.adoc[allocator_type] const& a = allocator_type()); ---- == Parameters [cols="1,4"] |=== | Name| Description | *n* | The number of elements to store. | *val* | The value to copy into every element. | *a* | The allocator to use. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#