| 600 | PointViewIter& operator--() |
| 601 | { --m_id; return *this; } |
| 602 | PointViewIter operator--(int) |
| 603 | { return PointViewIter(m_view, m_id--); } |
| 604 | |
| 605 | PointViewIter operator+(const difference_type& n) const |
| 606 | { return PointViewIter(m_view, m_id + n); } |
nothing calls this directly
no test coverage detected