| 363 | } |
| 364 | |
| 365 | iterator_impl operator+ (difference_type n) const |
| 366 | { |
| 367 | auto tmp = *this; |
| 368 | return (tmp += n); |
| 369 | } |
| 370 | |
| 371 | iterator_impl operator- (difference_type n) const |
| 372 | { |
nothing calls this directly
no outgoing calls
no test coverage detected