[#absl-FixedArray-2constructor-0ca] = xref:absl.adoc[absl]::xref:absl/FixedArray.adoc[FixedArray]::FixedArray :relfileprefix: ../../ :mrdocs: Creates an array object that can store `n` elements. == Synopsis Declared in `<absl/container/fixed_array.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- explicit FixedArray( xref:absl/FixedArray/size_type.adoc[size_type] n, xref:absl/FixedArray/allocator_type.adoc[allocator_type] const& a = allocator_type()); ---- == Description Note that trivially constructible elements will be uninitialized. == Parameters [cols="1,4"] |=== | Name| Description | *n* | The number of elements to store. | *a* | The allocator to use. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#