Standard C++ Library Reference ISO/IEC (VERSION3)
vector::operator[]
const_reference operator[](size_type off) const;
reference operator[](size_type off);
The member function returns a reference to the element of the controlled sequence at position
off. If that position is invalid, the behavior is undefined.
vector::pointer
typedef typename Alloc::pointer pointer;
The type describes an object that can serve as a pointer to an element of the controlled
sequence.
vector::pop_back
void pop_back();
The member function removes the last element of the controlled sequence, which must be
non-empty.
The member function never throws an exception.
vector::push_back
void push_back(const Ty& val);
The member function inserts an element with value val at the end of the controlled sequence.
If an exception is thrown, the container is left unaltered and the exception is rethrown.
vector::rbegin
const_reverse_iterator rbegin() const;
reverse_iterator rbegin();
The member function returns a reverse iterator that points just beyond the end of the controlled
sequence. Hence, it designates the beginning of the reverse sequence.
vector::reference
typedef typename Alloc::reference reference;
The type describes an object that can serve as a reference to an element of the controlled
sequence.