Parses the string buf as signed or unsigned representation in the
specified base of an integral value of type T.
When base is zero the string prefix is examined to detect the true base:
Ignores '_' character in buf.
See also parseUnsigned.
pub fn parseInt(comptime T: type, buf: []const u8, base: u8) ParseIntError!T
pub fn parseInt(comptime T: type, buf: []const u8, base: u8) ParseIntError!T {
return parseIntWithGenericCharacter(T, u8, buf, base);
}