Searched refs:LinkedListIterator (Results 1 – 1 of 1) sorted by relevance
30 class LinkedListIterator {32 LinkedListIterator() : entry_(nullptr) {} in LinkedListIterator() function33 LinkedListIterator(const LinkedListIterator<T>& that) : entry_(that.entry_) {} in LinkedListIterator() function34 explicit LinkedListIterator(LinkedListEntry<T>* entry) : entry_(entry) {} in LinkedListIterator() function36 LinkedListIterator<T>& operator=(const LinkedListIterator<T>& that) {41 LinkedListIterator<T>& operator++() {50 bool operator==(const LinkedListIterator<T>& that) const {54 bool operator!=(const LinkedListIterator<T>& that) const {68 typedef LinkedListIterator<T> iterator;