Returns the maximum value of integer type T.
pub fn maxInt(comptime T: type) comptime_int
pub fn maxInt(comptime T: type) comptime_int { const info = @typeInfo(T).int; return (1 << (info.bits - @intFromBool(info.signedness == .signed))) - 1; }