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