Searched refs:LinkedListIterator (Results 1 – 1 of 1) sorted by relevance
42 class LinkedListIterator {44 LinkedListIterator() : entry_(nullptr) {} in LinkedListIterator() function45 LinkedListIterator(const LinkedListIterator<T>& that) : entry_(that.entry_) {} in LinkedListIterator() function46 explicit LinkedListIterator(LinkedListEntry<T>* entry) : entry_(entry) {} in LinkedListIterator() function48 LinkedListIterator<T>& operator=(const LinkedListIterator<T>& that) {53 LinkedListIterator<T>& operator++() {62 bool operator==(const LinkedListIterator<T>& that) const {66 bool operator!=(const LinkedListIterator<T>& that) const {80 typedef LinkedListIterator<T> iterator;