[#absl-FixedArray-at-08] = xref:absl.adoc[absl]::xref:absl/FixedArray.adoc[FixedArray]::at :relfileprefix: ../../ :mrdocs: `at` overloads == Synopses Declared in `<absl/container/fixed_array.h>` Bounds‐checked access. Returns a reference to the ith element of the fixed array, or throws std::out_of_range. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:absl/FixedArray/reference.adoc[reference] xref:absl/FixedArray/at-07.adoc[at](xref:absl/FixedArray/size_type.adoc[size_type] i); ---- [.small]#xref:absl/FixedArray/at-07.adoc[_» more..._]# Bounds‐checked access. Returns a const reference to the ith element of the fixed array, or throws std::out_of_range. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:absl/FixedArray/const_reference.adoc[const_reference] xref:absl/FixedArray/at-01.adoc[at](xref:absl/FixedArray/size_type.adoc[size_type] i) const; ---- [.small]#xref:absl/FixedArray/at-01.adoc[_» more..._]# == Return Value * A reference to the ith element. * A const reference to the ith element. == Parameters [cols="1,4"] |=== | Name| Description | *i* | The index of the element to access. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#