Easypt

-

..Root.StringIterator.-

Returns new StringIterator moved backward by arguments value;

Child of:

StringIterator

Signatures:

NativeCallable, Callable

Example:

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