access to successor
| 11577 | |
| 11578 | /// access to successor |
| 11579 | reference operator[](difference_type n) const |
| 11580 | { |
| 11581 | return *(this->operator+(n)); |
| 11582 | } |
| 11583 | |
| 11584 | /// return the key of an object iterator |
| 11585 | auto key() const -> decltype(std::declval<Base>().key()) |