libstdc++
|
Public Types | |
typedef __traits_type::difference_type | difference_type |
typedef iterator_traits < _Iterator > ::iterator_category | iterator_category |
typedef _Iterator | iterator_type |
typedef __traits_type::pointer | pointer |
typedef __traits_type::reference | reference |
typedef iterator_traits < _Iterator >::value_type | value_type |
Public Member Functions | |
reverse_iterator () | |
reverse_iterator (iterator_type __x) | |
reverse_iterator (const reverse_iterator &__x) | |
template<typename _Iter > | |
reverse_iterator (const reverse_iterator< _Iter > &__x) | |
iterator_type | base () const |
reference | operator* () const |
reverse_iterator | operator+ (difference_type __n) const |
reverse_iterator & | operator++ () |
reverse_iterator | operator++ (int) |
reverse_iterator & | operator+= (difference_type __n) |
reverse_iterator | operator- (difference_type __n) const |
reverse_iterator & | operator-- () |
reverse_iterator | operator-- (int) |
reverse_iterator & | operator-= (difference_type __n) |
pointer | operator-> () const |
reference | operator[] (difference_type __n) const |
Protected Types | |
typedef iterator_traits < _Iterator > | __traits_type |
Protected Attributes | |
_Iterator | current |
Bidirectional and random access iterators have corresponding reverse iterator adaptors that iterate through the data structure in the opposite direction. They have the same signatures as the corresponding iterators. The fundamental relation between a reverse iterator and its corresponding iterator i
is established by the identity:
This mapping is dictated by the fact that while there is always a pointer past the end of an array, there might not be a valid pointer before the beginning of an array. [24.4.1]/1,2
Reverse iterators can be tricky and surprising at first. Their semantics make sense, however, and the trickiness is a side effect of the requirement that the iterators must be safe.
Definition at line 97 of file stl_iterator.h.
|
inherited |
One of the tag types.
Definition at line 121 of file stl_iterator_base_types.h.
|
inherited |
The type "pointed to" by the iterator.
Definition at line 123 of file stl_iterator_base_types.h.
|
inline |
The default constructor value-initializes member current
. If it is a pointer, that means it is zero-initialized.
Definition at line 121 of file stl_iterator.h.
Referenced by std::reverse_iterator< _Iterator >::operator+(), and std::reverse_iterator< _Iterator >::operator-().
|
inlineexplicit |
This iterator will move in the opposite direction that x
does.
Definition at line 127 of file stl_iterator.h.
|
inline |
The copy constructor is normal.
Definition at line 132 of file stl_iterator.h.
|
inline |
A reverse_iterator across other types can be copied if the underlying iterator can be converted to the type of current
.
Definition at line 140 of file stl_iterator.h.
|
inline |
current
, the iterator used for underlying work. Definition at line 147 of file stl_iterator.h.
Referenced by std::operator==().
|
inline |
–current
This requires that –current
is dereferenceable.
x
, a reference obtained by *x
remains valid after x
has been modified or destroyed. This is a bug: http://gcc.gnu.org/PR51823 Definition at line 161 of file stl_iterator.h.
Referenced by std::reverse_iterator< _Iterator >::operator->().
|
inline |
current
- __n The underlying iterator must be a Random Access Iterator.
Definition at line 232 of file stl_iterator.h.
References std::reverse_iterator< _Iterator >::reverse_iterator().
|
inline |
|
inline |
*this
Decrements the underlying iterator.
Definition at line 194 of file stl_iterator.h.
|
inline |
Moves the underlying iterator backwards __n steps. The underlying iterator must be a Random Access Iterator.
Definition at line 242 of file stl_iterator.h.
|
inline |
current
- __n The underlying iterator must be a Random Access Iterator.
Definition at line 254 of file stl_iterator.h.
References std::reverse_iterator< _Iterator >::reverse_iterator().
|
inline |
|
inline |
*this
Increments the underlying iterator.
Definition at line 219 of file stl_iterator.h.
|
inline |
Moves the underlying iterator forwards __n steps. The underlying iterator must be a Random Access Iterator.
Definition at line 264 of file stl_iterator.h.
|
inline |
–current
This requires that –current
is dereferenceable.
Definition at line 173 of file stl_iterator.h.
References std::reverse_iterator< _Iterator >::operator*().
|
inline |
current
- __n - 1The underlying iterator must be a Random Access Iterator.
Definition at line 276 of file stl_iterator.h.