| 36 | } |
| 37 | |
| 38 | friend bool operator==(const VectorIterator& l, const VectorIterator& r){ |
| 39 | if(l.pos == r.pos){ |
| 40 | return true; |
| 41 | } else { |
| 42 | return false; |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | friend bool operator!=(const VectorIterator& l, const VectorIterator& r){ |
| 47 | if(l.pos != r.pos){ |
nothing calls this directly
no outgoing calls
no test coverage detected