Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
A type that provides a random-access iterator that can read any const element in the vector.
typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
Remarks
A type const_reverse_iterator cannot modify the value of an element and is used to iterate through the vector in reverse.
Example
See rbegin for an example of how to declare and use an iterator.
Requirements
Header: <vector>
Namespace: std