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