Function readVarInt [src]

Prototype

pub inline fn readVarInt( self: Self, comptime ReturnType: type, endian: std.builtin.Endian, size: usize, ) NoEofError!ReturnType

Parameters

self: SelfReturnType: typeendian: std.builtin.Endiansize: usize

Possible Errors

EndOfStream

Source

pub inline fn readVarInt( self: Self, comptime ReturnType: type, endian: std.builtin.Endian, size: usize, ) NoEofError!ReturnType { return @errorCast(self.any().readVarInt(ReturnType, endian, size)); }