Easypt

++

..Root.ArrayIterator.++

Increments ArrayIterator instance (equivalent of it.=(it.+(1))).

Child of:

ArrayIterator

Signatures:

NativeCallable, Callable

Example:

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