| 59 | } |
| 60 | |
| 61 | friend bool operator==(const ListIterator& l, const ListIterator& r){ |
| 62 | if(l.node == r.node){ |
| 63 | return true; |
| 64 | } else { |
| 65 | return false; |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | friend bool operator!=(const ListIterator& l, const ListIterator& r){ |
| 70 | if(l.node != r.node){ |
nothing calls this directly
no outgoing calls
no test coverage detected