pub inline fn inf(comptime Type: type) Type
pub inline fn inf(comptime Type: type) Type { const RuntimeType = switch (Type) { else => Type, comptime_float => f128, // any float type will do }; return reconstructFloat(RuntimeType, floatExponentMax(RuntimeType) + 1, mantissaOne(RuntimeType)); }