vectorBase [constructor] | Create an empty base object with no capacity. |
adopt | Adopt all outstanding memory allocations associated with the specified base object. The behavior is undefined unless this object is in a default-constructed state. |
at | at overloads |
back | back overloads |
begin | begin overloads |
capacity | Return the capacity of this vector, i.e., the maximum number of elements for which resizing is guaranteed not to trigger a reallocation. |
cbegin | 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. |
cend | Return the past-the-end (forward) iterator providing non-modifiable access to this vector. |
crbegin | Return a reverse iterator providing non-modifiable access to the last element in this vector, and the past-the-end reverse iterator if this vector is empty. |
crend | Return the past-the-end reverse iterator providing non-modifiable access to this vector. |
data | data overloads |
empty | Return true if this vector has size 0, and false otherwise. |
end | end overloads |
front | front overloads |
operator[] | Subscript operators |
rbegin | rbegin overloads |
rend | rend overloads |
size | Return the number of elements in this vector. |