[#bsl-vector-09a-at] = xref:bsl.adoc[bsl]::xref:bsl/vector-09a.adoc[vector<int>]::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-03d/reference.adoc[reference] xref:bsl/vectorBase-03d/at-04.adoc[at](xref:bsl/vectorBase-06a/size_type.adoc[size_type] position); ---- [.small]#xref:bsl/vectorBase-03d/at-04.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-03d/const_reference.adoc[const_reference] xref:bsl/vectorBase-03d/at-0e.adoc[at](xref:bsl/vectorBase-06a/size_type.adoc[size_type] position) const; ---- [.small]#xref:bsl/vectorBase-03d/at-0e.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#