Searched refs:LinkedListIterator (Results 1 – 1 of 1) sorted by relevance
41 class LinkedListIterator {43 LinkedListIterator() : entry_(nullptr) {} in LinkedListIterator() function44 LinkedListIterator(const LinkedListIterator<T>& that) : entry_(that.entry_) {} in LinkedListIterator() function45 explicit LinkedListIterator(LinkedListEntry<T>* entry) : entry_(entry) {} in LinkedListIterator() function47 LinkedListIterator<T>& operator=(const LinkedListIterator<T>& that) {52 LinkedListIterator<T>& operator++() {61 bool operator==(const LinkedListIterator<T>& that) const {65 bool operator!=(const LinkedListIterator<T>& that) const {79 typedef LinkedListIterator<T> iterator;