Easypt

readOperator

..Root.String.readOperator

Returns iterator pointing to i-th character. Read operator ([]) is shorthand for this function.

Child of:

String

Signatures:

NativeCallable, Callable

Example:

auto str.=("Hello World!");
log(str.readOperator(6).get());
log(str[6].get());