| 254 | } |
| 255 | |
| 256 | const_iterator operator+(difference_type n) const { return iterator( row, index + n ) ; } |
| 257 | const_iterator operator-(difference_type n) const { return iterator( row, index - n ) ; } |
| 258 | difference_type operator-(const const_iterator& other) const { return index - other.index ; } |
| 259 |