Function isPositiveZero [src]
Alias for std.math.iszero.isPositiveZero
Returns whether x is positive zero.
Prototype
pub inline fn isPositiveZero(x: anytype) bool
Example
test isPositiveZero {
inline for ([_]type{ f16, f32, f64, f80, f128 }) |T| {
try expect(isPositiveZero(@as(T, 0.0)));
try expect(!isPositiveZero(@as(T, -0.0)));
try expect(!isPositiveZero(math.floatMin(T)));
try expect(!isPositiveZero(math.floatMax(T)));
try expect(!isPositiveZero(math.inf(T)));
try expect(!isPositiveZero(-math.inf(T)));
}
}
Source
pub inline fn isPositiveZero(x: anytype) bool {
const T = @TypeOf(x);
const bit_count = @typeInfo(T).float.bits;
const TBits = std.meta.Int(.unsigned, bit_count);
return @as(TBits, @bitCast(x)) == @as(TBits, 0);
}