Easypt

readOperator

..Root.ByteView.readOperator

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

Child of:

ByteView

Signatures:

NativeCallable, Callable

Example:

import("memory");

auto str.=("abc");
auto a.=(ByteView(str));

log(a.[1].get().toInt());