[#bsl-vectorBase-06-begin-0ce8] = xref:bsl.adoc[bsl]::xref:bsl/vectorBase-06.adoc[vectorBase]::begin :relfileprefix: ../../ :mrdocs: `begin` overloads == Synopses Declared in `<bslstl_vector.h>` Return an iterator providing modifiable access to the first element in this vector, or the past‐the‐end iterator if this vector is empty. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/vectorBase-06/iterator.adoc[vectorBase<VALUE_TYPE>::iterator] xref:bsl/vectorBase-06/begin-03.adoc[begin]() noexcept; ---- [.small]#xref:bsl/vectorBase-06/begin-03.adoc[_» more..._]# Return an iterator providing non‐modifiable access to the first element in this vector, and the past‐the‐end iterator if this vector is empty. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/vectorBase-06/const_iterator.adoc[vectorBase<VALUE_TYPE>::const_iterator] xref:bsl/vectorBase-06/begin-0cef.adoc[begin]() const noexcept; ---- [.small]#xref:bsl/vectorBase-06/begin-0cef.adoc[_» more..._]# == Return Value * iterator providing modifiable access to the first element, or past‐the‐end if empty * const iterator to the beginning, or past‐the‐end if empty [.small]#Created with https://www.mrdocs.com[MrDocs]#