Easypt

ArrayIterator

..Root.ArrayIterator

Constructs a new ArrayIterator, this constructor exists only for internal Array purposes. ArrayIterator is not memory safe (not aware of Array size). For creating ArrayIterator pointing to data use Array.begin() and Array.end().

ArrayIterator type signatures:

Object, Iterator, ArrayIterator

Child of:

Root

Signatures:

NativeCallable, Callable, Class

Members:

Example:

auto arr.=(Array());
arr.pushBack("abc", "def");
for (auto it.=(arr.begin()).!=, arr.end(), it.++, {
    log(it.get());
});