///|
/// Inverse cube root function
pub fn rcbrt(x : Double) -> Double {
  1.0 / cbrt(x)
}