readOperator..Root.ByteView.readOperatorReturns iterator pointing to i-th byte. Read operator ([]) is shorthand for this function.
Parameters: Int i
Return value: new ByteViewIterator
NativeCallable, Callable
import("memory");
auto str.=("abc");
auto a.=(ByteView(str));
log(a.[1].get().toInt());