Calculates the cube root of x.
import std.math.operations : feqrel; assert(cbrt(1.0).feqrel(1.0) > 16); assert(cbrt(27.0).feqrel(3.0) > 16); assert(cbrt(15.625).feqrel(2.5) > 16);
See Implementation
Calculates the cube root of x.