Easypt

begin

..Root.ByteView.begin

Returns an iterator pointing to the first byte of this ByteView.

Child of:

ByteView

Signatures:

NativeCallable, Callable

Example:

import("memory");

auto str.=("\122\123\124");
auto a.=(ByteView(str));

for (auto it.=(a.begin()).!=, a.end(), it.++, {
    log(it.get().toInt());
});

Expected output:

122
123
124