Easypt

StringIterator

..Root.StringIterator

Constructs 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

Child of:

Root

Signatures:

NativeCallable, Callable, Class

Members:

Example:

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