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