end
..Root.ByteView.end
Returns an iterator pointing after the last 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