| 137 | |
| 138 | |
| 139 | ArrayIterator::ArrayIterator(const Array *a) noexcept |
| 140 | :impl(a), |
| 141 | _value(firstValue()) |
| 142 | { } |
| 143 | |
| 144 | ArrayIterator& ArrayIterator::operator++() { |
| 145 | offset(1); |
nothing calls this directly
no outgoing calls
no test coverage detected