MCPcopy Create free account
hub / github.com/SerenityOS/jakt / ArrayIterator

Method ArrayIterator

runtime/Builtins/DynamicArray.h:182–188  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

180
181public:
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 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected