Searched defs:forward_iterator (Results 1 - 1 of 1) sorted by relevance

/external/libcxx/test/support/
H A Dtest_iterators.h105 class forward_iterator class
109 template <class U> friend class forward_iterator;
119 forward_iterator() : it_() {} function in class:forward_iterator
120 explicit forward_iterator(It it) : it_(it) {} function in class:forward_iterator
122 forward_iterator(const forward_iterator<U>& u) :it_(u.it_) {} function in class:forward_iterator
127 forward_iterator& operator++() {++it_; return *this;}
128 forward_iterator operator++(int)
129 {forward_iterator tmp(*this); ++(*this); return tmp;}
131 friend bool operator==(const forward_iterator
[all...]

Completed in 135 milliseconds