And the reverse transformation.
| 2224 | |
| 2225 | // And the reverse transformation. |
| 2226 | size_type get_pos(const const_ne_iterator& it) const |
| 2227 | { |
| 2228 | difference_type current_row = it.row_current - _first_group; |
| 2229 | difference_type current_col = (it.col_current - _first_group[current_row].ne_begin()); |
| 2230 | return ((current_row * SPP_GROUP_SIZE) + |
| 2231 | _first_group[current_row].offset_to_pos(current_col)); |
| 2232 | } |
| 2233 | |
| 2234 | // Val can be reference or const_reference |
| 2235 | // --------------------------------------- |
nothing calls this directly
no test coverage detected