| 646 | |
| 647 | public: |
| 648 | iterator(vector_2d_view *const vec) |
| 649 | : _vec(vec), _row_offset(0), _col_offset(0) {} |
| 650 | |
| 651 | bool operator==(const iterator &it) const { |
| 652 | return is_end_iterator(it) |
nothing calls this directly
no outgoing calls
no test coverage detected