Function floatExponentMin [src]

Alias for std.math.float.floatExponentMin

Returns the minimum exponent that can represent a normalised value in floating point type T.

Prototype

pub inline fn floatExponentMin(comptime T: type) comptime_int

Parameters

T: type

Source

pub inline fn floatExponentMin(comptime T: type) comptime_int { return -floatExponentMax(T) + 1; }