| 32 | } |
| 33 | |
| 34 | ListIterator operator++(int){ // Post decrement |
| 35 | ListIterator<T> v = ListIterator<T>(*this); |
| 36 | |
| 37 | if(node) |
| 38 | node = node->next; |
| 39 | |
| 40 | return v; |
| 41 | } |
| 42 | |
| 43 | ListIterator& operator=(const ListIterator& other){ |
| 44 | node = other.node; |
nothing calls this directly
no outgoing calls
no test coverage detected