Returns the minimum value of integer type T.
pub fn minInt(comptime T: type) comptime_int
pub fn minInt(comptime T: type) comptime_int {
const info = @typeInfo(T).int;
return switch (info.signedness) {
.unsigned => 0,
.signed => -(1 << (info.bits - 1)),
};
}