[#absl-FixedArray-2constructor-0d] = xref:absl.adoc[absl]::xref:absl/FixedArray.adoc[FixedArray]::FixedArray :relfileprefix: ../../ :mrdocs: Creates an array initialized with the elements from the input range. == Synopsis Declared in `<absl/container/fixed_array.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename Iterator, xref:absl/FixedArray.adoc[EnableIfInputIterator<Iterator>]* = nullptr> FixedArray( Iterator first, Iterator last, xref:absl/FixedArray/allocator_type.adoc[allocator_type] const& a = allocator_type()); ---- == Description The array's size will always be `std::distance(first, last)`. REQUIRES: Iterator must be an input_iterator or better. == Parameters [cols="1,4"] |=== | Name| Description | *first* | Iterator to the first element to copy. | *last* | Iterator past the last element to copy. | *a* | The allocator to use. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#