[#absl-FixedArray-operator_subs-01] = xref:absl.adoc[absl]::xref:absl/FixedArray.adoc[FixedArray]::operator[] :relfileprefix: ../../ :mrdocs: Subscript operators == Synopses Declared in `<absl/container/fixed_array.h>` Returns a reference to the ith element of the fixed array. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:absl/FixedArray/reference.adoc[reference] xref:absl/FixedArray/operator_subs-0d.adoc[operator[]](xref:absl/FixedArray/size_type.adoc[size_type] i); ---- [.small]#xref:absl/FixedArray/operator_subs-0d.adoc[_» more..._]# Returns a const reference to the ith element of the fixed array. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:absl/FixedArray/const_reference.adoc[const_reference] xref:absl/FixedArray/operator_subs-00.adoc[operator[]](xref:absl/FixedArray/size_type.adoc[size_type] i) const; ---- [.small]#xref:absl/FixedArray/operator_subs-00.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]#