Function floatEps [src]

Alias for std.math.float.floatEps

Returns the machine epsilon of floating point type T.

Prototype

pub inline fn floatEps(comptime T: type) T

Parameters

T: type

Source

pub inline fn floatEps(comptime T: type) T { return reconstructFloat(T, -floatFractionalBits(T), mantissaOne(T)); }