| 124 | iterator operator++(int) { auto r = *this; seek(1); return r; } |
| 125 | iterator operator--(int) { auto r = *this; seek(-1); return r; } |
| 126 | void erase() { _a->erase(_i); } |
| 127 | const T& operator*() const { return *_a->get(_i); } |
| 128 | const T* operator->() const { return _a->get(_i); } |
| 129 | template<typename P> |