[#bsl-vectorBase-06e-at-0a5] = xref:bsl.adoc[bsl]::xref:bsl/vectorBase-06e.adoc[vectorBase<float>]::at :relfileprefix: ../../ :mrdocs: `at` overloads == Synopses Declared in `<bslstl_vector.h>` Return a reference providing modifiable access to the element at the specified `position` in this vector. Throw a `std::out_of_range` exception if `position >= size()`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/vectorBase-06e/reference.adoc[reference] xref:bsl/vectorBase-06e/at-0d.adoc[at](xref:bsl/vectorBase-06a/size_type.adoc[size_type] position); ---- [.small]#xref:bsl/vectorBase-06e/at-0d.adoc[_» more..._]# Return a reference providing non‐modifiable access to the element at the specified `position` in this vector. Throw a `bsl::out_of_range` exception if `position >= size()`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/vectorBase-06e/const_reference.adoc[const_reference] xref:bsl/vectorBase-06e/at-0a1.adoc[at](xref:bsl/vectorBase-06a/size_type.adoc[size_type] position) const; ---- [.small]#xref:bsl/vectorBase-06e/at-0a1.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#