[#absl-InlinedVector-at-0f] = xref:absl.adoc[absl]::xref:absl/InlinedVector.adoc[InlinedVector]::at :relfileprefix: ../../ :mrdocs: `at` overloads == Synopses Declared in `<absl/container/inlined_vector.h>` Returns a `reference` to the `i`th element of the inlined vector. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:absl/InlinedVector/reference.adoc[reference] xref:absl/InlinedVector/at-0d.adoc[at](xref:absl/InlinedVector/size_type.adoc[size_type] i); ---- [.small]#xref:absl/InlinedVector/at-0d.adoc[_» more..._]# Overload of `InlinedVector::at(...)` that returns a `const_reference` to the `i`th element of the inlined vector. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:absl/InlinedVector/const_reference.adoc[const_reference] xref:absl/InlinedVector/at-01.adoc[at](xref:absl/InlinedVector/size_type.adoc[size_type] i) const; ---- [.small]#xref:absl/InlinedVector/at-01.adoc[_» more..._]# == Return Value * A `reference` to the `i`th element. * A `const_reference` to the `i`th element. == Parameters [cols="1,4"] |=== | Name| Description | *i* | The index of the element to access. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#