BinaryReader.skipTo

Moves cursor to specified position.

If specified position is behind current cursor position, nothing happens.

struct BinaryReader(Range = ubyte[])
void
skipTo
(
size_t offset
)
if (
isInputRange!Range &&
is(ElementType!Range == ubyte)
)

Parameters

offset
Type: size_t

Offset to align to

Meta