| 180 | |
| 181 | public: |
| 182 | ArrayIterator(NonnullRefPtr<Storage> storage, size_t offset, size_t size) |
| 183 | : m_storage(move(storage)) |
| 184 | , m_offset(offset) |
| 185 | , m_index(offset) |
| 186 | , m_size(size) |
| 187 | { |
| 188 | } |
| 189 | |
| 190 | Optional<T> next() |
| 191 | { |
nothing calls this directly
no outgoing calls
no test coverage detected