Easypt

++

..Root.StringIterator.++

Increments StringIterator instance (equivalent of it.=(it.+(1))).

Child of:

StringIterator

Signatures:

NativeCallable, Callable

Example:

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