Function isPositiveInf [src]
Alias for std.math.isinf.isPositiveInf
Returns whether x is an infinity with a positive sign.
Prototype
pub inline fn isPositiveInf(x: anytype) bool
Example
test isPositiveInf {
inline for ([_]type{ f16, f32, f64, f80, f128 }) |T| {
try expect(!isPositiveInf(@as(T, 0.0)));
try expect(!isPositiveInf(@as(T, -0.0)));
try expect(isPositiveInf(math.inf(T)));
try expect(!isPositiveInf(-math.inf(T)));
try expect(!isInf(math.nan(T)));
try expect(!isInf(-math.nan(T)));
}
}
Source
pub inline fn isPositiveInf(x: anytype) bool {
return x == math.inf(@TypeOf(x));
}