ArrayIterator..Root.ArrayIteratorConstructs 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
NativeCallable, Callable, Class
auto arr.=(Array());
arr.pushBack("abc", "def");
for (auto it.=(arr.begin()).!=, arr.end(), it.++, {
log(it.get());
});