Subscript operators
Declared in <bslstl_vector.h>
Return a reference providing modifiable access to the element at the specified position in this vector. The behavior is undefined unless position < size().
vectorBase<VALUE_TYPE>::reference
operator[](size_type position);
» more...
Return a reference providing non-modifiable access to the element at the specified position in this vector. The behavior is undefined unless position < size().
vectorBase<VALUE_TYPE>::const_reference
operator[](size_type position) const;
» more...