! @brief add to iterator @pre The iterator is initialized; i.e. `m_object != nullptr`. */
| 11291 | @pre The iterator is initialized; i.e. `m_object != nullptr`. |
| 11292 | */ |
| 11293 | iter_impl operator+(difference_type i) const |
| 11294 | { |
| 11295 | auto result = *this; |
| 11296 | result += i; |
| 11297 | return result; |
| 11298 | } |
| 11299 | |
| 11300 | /*! |
| 11301 | @brief addition of distance and iterator |
nothing calls this directly
no outgoing calls
no test coverage detected