Easypt

begin

..Root.String.begin

Returns an iterator pointing to the first character of this String.

Child of:

String

Signatures:

NativeCallable, Callable

Example:

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