Easypt

--

..Root.StringIterator.--

Decrements StringIterator instance (equivalent of it.=(it.-(1))).

Child of:

StringIterator

Signatures:

NativeCallable, Callable

Example:

auto str.=("Hello world!");
for (auto it.=(str.end()).!=, str.begin(), it.--, {
    log(it.-(1).get());
});