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

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