Function floatExponentMax [src]

Alias for std.math.float.floatExponentMax

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

Prototype

pub inline fn floatExponentMax(comptime T: type) comptime_int

Parameters

T: type

Source

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