vector::reverse_iterator

A type that provides a random-access iterator that can read or modify any element in a reversed vector.

typedef std::reverse_iterator<iterator> reverse_iterator;

Remarks

A type reverse_iterator is used to iterate through the vector in reverse.

Example

See the example for rbegin.

Requirements

Header: <vector>

Namespace: std

See Also

Reference

vector Class

Standard Template Library