Lines Matching refs:LinkedListIterator
30 class LinkedListIterator {
32 LinkedListIterator() : entry_(nullptr) {}
33 LinkedListIterator(const LinkedListIterator<T>& that) : entry_(that.entry_) {}
34 explicit LinkedListIterator(LinkedListEntry<T>* entry) : entry_(entry) {}
36 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;