sqrtDouble static method

DD sqrtDouble(
  1. double x
)

Implementation

static DD sqrtDouble(double x) {
  return valueOf(x).sqrt();
}