++
..Root.StringIterator.++
Increments StringIterator instance (equivalent of it.=(it.+(1))).
StringIterator
it.=(it.+(1))
NativeCallable, Callable
NativeCallable
Callable
auto str.=("Hello world!"); for (auto it.=(str.begin()).!=, str.end(), it.++, { log(it.get()); });