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