Public Types | |
typedef iterator_traits< Iterator >::difference_type | difference_type |
Distance between iterators is represented as this type. | |
typedef iterator_traits< Iterator >::reference | reference |
This type represents a reference-to-value_type. | |
typedef iterator_traits< Iterator >::pointer | pointer |
This type represents a pointer-to-value_type. | |
typedef iterator_traits< Iterator >::iterator_category | iterator_category |
One of the tag types. | |
typedef iterator_traits< Iterator >::value_type | value_type |
The type "pointed to" by the iterator. | |
Public Member Functions | |
normal_iterator () | |
normal_iterator (const Iterator &__i) | |
template<typename Iter> | |
normal_iterator (const normal_iterator< Iter, Container > &__i) | |
reference | operator * () const |
pointer | operator-> () const |
normal_iterator & | operator++ () |
normal_iterator | operator++ (int) |
normal_iterator & | operator-- () |
normal_iterator | operator-- (int) |
reference | operator[] (const difference_type &n) const |
normal_iterator & | operator+= (const difference_type &n) |
normal_iterator | operator+ (const difference_type &n) const |
normal_iterator & | operator-= (const difference_type &n) |
normal_iterator | operator- (const difference_type &n) const |
const Iterator & | base () const |
Protected Attributes | |
Iterator | M_current |
Definition at line 574 of file stl_iterator.h.
|
Distance between iterators is represented as this type.
Definition at line 586 of file stl_iterator.h. |
|
One of the tag types.
Definition at line 107 of file stl_iterator_base_types.h. |
|
This type represents a pointer-to-value_type.
Definition at line 588 of file stl_iterator.h. |
|
This type represents a reference-to-value_type.
Definition at line 587 of file stl_iterator.h. |
|
The type "pointed to" by the iterator.
Definition at line 109 of file stl_iterator_base_types.h. |