libstdc++
|
Public Types | |
typedef traits_type::difference_type | difference_type |
typedef Iterator1 | first_type |
typedef IteratorCategory | iterator_category |
typedef type * | pointer |
typedef type & | reference |
typedef Iterator2 | second_type |
typedef std::iterator_traits< Iterator1 > | traits_type |
typedef void | value_type |
Public Member Functions | |
iterator_pair (const Iterator1 &first, const Iterator2 &second) | |
operator Iterator2 () const | |
type | operator+ (difference_type delta) const |
type & | operator++ () |
const type | operator++ (int) |
difference_type | operator- (const type &other) const |
type & | operator-- () |
const type | operator-- (int) |
type & | operator= (const type &other) |
void | swap (pair &&__p) |
Public Attributes | |
Iterator1 | first |
Iterator2 | second |
A pair of iterators. The usual iterator operations are applied to both child iterators.
Definition at line 44 of file iterator.h.
|
inherited |
first_type
is the first bound type
Definition at line 69 of file stl_pair.h.
|
inherited |
second_type
is the second bound type
Definition at line 70 of file stl_pair.h.
|
inherited |
first
is a copy of the first object
Definition at line 72 of file stl_pair.h.
|
inherited |
second
is a copy of the second object
Definition at line 73 of file stl_pair.h.