Easypt

-

..Root.ArrayIterator.-

Returns new ArrayIterator moved backward by arguments value;

Child of:

ArrayIterator

Signatures:

NativeCallable, Callable

Example:

```c auto arr.=(Array()); arr.pushBack(“abc”, “def”); for (auto it.=(arr.end()).!=, arr.begin(), it.–, { log(it.-(1).get()); });