++..Root.ArrayIterator.++Increments ArrayIterator instance (equivalent of it.=(it.+(1))).
ArrayIteratorNativeCallable, Callable
auto arr.=(Array());
arr.pushBack("abc", "def");
for (auto it.=(arr.begin()).!=, arr.end(), it.++, {
log(it.get());
});