aboutsummaryrefslogtreecommitdiff
path: root/lib/std/math/isfinite.zig
blob: 68aec258b0d00a35c2ba1fac59fb844fe9367fc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// SPDX-License-Identifier: MIT
// Copyright (c) 2015-2021 Zig Contributors
// This file is part of [zig](https://ziglang.org/), which is MIT licensed.
// The MIT license requires this copyright notice to be included in all copies
// and substantial portions of the software.
const std = @import("../std.zig");
const math = std.math;
const expect = std.testing.expect;
const maxInt = std.math.maxInt;

/// Returns whether x is a finite value.
pub fn isFinite(x: anytype) bool {
    const T = @TypeOf(x);
    switch (T) {
        f16 => {
            const bits = @bitCast(u16, x);
            return bits & 0x7FFF < 0x7C00;
        },
        f32 => {
            const bits = @bitCast(u32, x);
            return bits & 0x7FFFFFFF < 0x7F800000;
        },
        f64 => {
            const bits = @bitCast(u64, x);
            return bits & (maxInt(u64) >> 1) < (0x7FF << 52);
        },
        f128 => {
            const bits = @bitCast(u128, x);
            return bits & (maxInt(u128) >> 1) < (0x7FFF << 112);
        },
        else => {
            @compileError("isFinite not implemented for " ++ @typeName(T));
        },
    }
}

test "math.isFinite" {
    try expect(isFinite(@as(f16, 0.0)));
    try expect(isFinite(@as(f16, -0.0)));
    try expect(isFinite(@as(f32, 0.0)));
    try expect(isFinite(@as(f32, -0.0)));
    try expect(isFinite(@as(f64, 0.0)));
    try expect(isFinite(@as(f64, -0.0)));
    try expect(isFinite(@as(f128, 0.0)));
    try expect(isFinite(@as(f128, -0.0)));

    try expect(!isFinite(math.inf(f16)));
    try expect(!isFinite(-math.inf(f16)));
    try expect(!isFinite(math.inf(f32)));
    try expect(!isFinite(-math.inf(f32)));
    try expect(!isFinite(math.inf(f64)));
    try expect(!isFinite(-math.inf(f64)));
    try expect(!isFinite(math.inf(f128)));
    try expect(!isFinite(-math.inf(f128)));

    try expect(!isFinite(math.nan(f16)));
    try expect(!isFinite(-math.nan(f16)));
    try expect(!isFinite(math.nan(f32)));
    try expect(!isFinite(-math.nan(f32)));
    try expect(!isFinite(math.nan(f64)));
    try expect(!isFinite(-math.nan(f64)));
    try expect(!isFinite(math.nan(f128)));
    try expect(!isFinite(-math.nan(f128)));
}