StringIterator..Root.StringIteratorConstructs a new StringIterator, this constructor exists only for internal String purposes. StringIterator is not memory safe (not aware of String size). For creating StringIterator pointing to data use String.begin() and String.end().
StringIterator type signatures:Object, Iterator, StringIterator
NativeCallable, Callable, Class
auto str.=("Hello world!");
for (auto it.=(str.begin()).!=, str.end(), it.++, {
log(it.get());
});