Easypt

get

..Root.StringIterator.get

Gets value of an element (new String consisting of one character) pointed by iterator.

Child of:

StringIterator

Signatures:

NativeCallable, Callable

Example:

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