Function cbrt [src]

Alias for std.math.cbrt.cbrt

Returns the cube root of x. Special Cases: cbrt(+-0) = +-0 cbrt(+-inf) = +-inf cbrt(nan) = nan

Prototype

pub fn cbrt(x: anytype) @TypeOf(x)

Example

test cbrt { try expect(cbrt(@as(f32, 0.0)) == cbrt32(0.0)); try expect(cbrt(@as(f64, 0.0)) == cbrt64(0.0)); }

Source

pub fn cbrt(x: anytype) @TypeOf(x) { const T = @TypeOf(x); return switch (T) { f32 => cbrt32(x), f64 => cbrt64(x), else => @compileError("cbrt not implemented for " ++ @typeName(T)), }; }