Function readInt [src]

Prototype

pub inline fn readInt(self: Self, comptime T: type, endian: std.builtin.Endian) NoEofError!T

Parameters

self: SelfT: typeendian: std.builtin.Endian

Possible Errors

EndOfStream

Source

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