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

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