| 637 | std::size_t _col_offset; |
| 638 | |
| 639 | static bool is_empty_iterator(const iterator &it) { |
| 640 | return it._vec == nullptr; |
| 641 | } |
| 642 | static bool is_end_iterator(const iterator &it) { |
| 643 | return is_empty_iterator(it) || |
| 644 | it._row_offset * it._col_offset >= it._vec->size(); |
nothing calls this directly
no outgoing calls
no test coverage detected