Function readInt [src]
Prototype
pub inline fn readInt(self: Self, comptime T: type, endian: std.builtin.Endian) NoEofError!T
Parameters
self: Self
T: type
endian: std.builtin.Endian
Possible Errors
Source
pub inline fn readInt(self: Self, comptime T: type, endian: std.builtin.Endian) NoEofError!T {
return @errorCast(self.any().readInt(T, endian));
}