Easypt

--

..Root.ArrayIterator.--

Decrements 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.end()).!=, arr.begin(), it.--, {
    log(it.-(1).get());
});