| 607 | PointViewIter operator+=(const difference_type& n) |
| 608 | { m_id += n; return *this; } |
| 609 | PointViewIter operator-(const difference_type& n) const |
| 610 | { return PointViewIter(m_view, m_id - n); } |
| 611 | PointViewIter operator-=(const difference_type& n) |
| 612 | { m_id -= n; return *this; } |
| 613 | difference_type operator-(const PointViewIter& i) const |
nothing calls this directly
no test coverage detected