Standard C++ Library Reference ISO/IEC (VERSION3)
Container::max_size
size_type max_size() const;
The member function returns the length of the longest sequence that the object can control, in
constant time regardless of the length of the controlled sequence.
Container::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.
Container::reference
typedef T2 reference;
The type describes an object that can serve as a reference to an element of the controlled
sequence. It is described here as a synonym for the unspecified type T2 (typically
Alloc::reference). An object of type reference can be cast to an object of type
const_reference.
Container::rend
const_reverse_iterator rend() const;
reverse_iterator rend();
The member function returns a reverse iterator that points at the first element of the sequence
(or just beyond the end of an empty sequence). Hence, it designates the end of the reverse
sequence.
Container::reverse_iterator
typedef T7 reverse_iterator;
The type describes an object that can serve as a reverse iterator for the controlled sequence. It is
described here as a synonym for the unspecified type T7 (typically reverse_iterator
<iterator>).
Container::size
size_type size() const;
The member function returns the length of the controlled sequence, in constant time regardless