| 149 | } |
| 150 | |
| 151 | ContiguousConstIterator operator + (difference_type n) const |
| 152 | { |
| 153 | return ContiguousConstIterator(ptr_ + n); |
| 154 | } |
| 155 | |
| 156 | ContiguousConstIterator operator - (difference_type n) const |
| 157 | { |
nothing calls this directly
no test coverage detected