Function floatMin [src]
Alias for std.math.float.floatMin
Returns the smallest normal number representable in floating point type T.
Prototype
pub inline fn floatMin(comptime T: type) T
Parameters
T: type
Source
pub inline fn floatMin(comptime T: type) T {
return reconstructFloat(T, floatExponentMin(T), mantissaOne(T));
}