begin
..Root.ByteView.begin
Returns an iterator pointing to the first byte of this ByteView
.
ByteViewIterator
NativeCallable
, 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