access to successor
| 11505 | |
| 11506 | /// access to successor |
| 11507 | reference operator[](difference_type n) const |
| 11508 | { |
| 11509 | return *(this->operator+(n)); |
| 11510 | } |
| 11511 | |
| 11512 | /// return the key of an object iterator |
| 11513 | auto key() const -> decltype(std::declval<Base>().key()) |