Returns the cube root of x.
Special Cases:
pub fn cbrt(x: anytype) @TypeOf(x)
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)), }; }