begin..Root.ByteView.beginReturns an iterator pointing to the first byte of this ByteView.
ByteViewIteratorNativeCallable, Callable
import("memory");
auto str.=("\122\123\124");
auto a.=(ByteView(str));
for (auto it.=(a.begin()).!=, a.end(), it.++, {
log(it.get().toInt());
});
122
123
124