aboutsummaryrefslogtreecommitdiff
path: root/std/math/inf.zig
blob: ed559c313e90f4aaf8bd8080da3b6147c1da7da3 (plain)
1
2
3
4
5
6
7
8
9
10
const math = @import("index.zig");
const assert = @import("../debug.zig").assert;

pub fn inf(comptime T: type) -> T {
    switch (T) {
        f32 => @bitCast(f32, math.inf_u32),
        f64 => @bitCast(f64, math.inf_u64),
        else => @compileError("inf not implemented for " ++ @typeName(T)),
    }
}