Searched refs:DequeIterator (Results 1 – 2 of 2) sorted by relevance
41 template<typename T> class DequeIterator; variable49 typedef DequeIterator<T> iterator;150 class DequeIterator : public DequeIteratorBase<T> {153 typedef DequeIterator<T> Iterator;156 DequeIterator(Deque<T>* deque, size_t index) : Base(deque, index) { } in DequeIterator() function158 DequeIterator(const Iterator& other) : Base(other) { } in DequeIterator() function159 DequeIterator& operator=(const Iterator& other) { Base::assign(other); return *this; }178 typedef DequeIterator<T> NonConstIterator;385 inline DequeIterator<T> Deque<T>::findIf(Predicate& predicate) in findIf()
10858 Why was operator= added? Every concrete iterator (DequeIterator..DequeConstReverseIterator)