sqrDouble static method

DD sqrDouble(
  1. double x
)

Computes the square of this value.

@return the square of this value.

Implementation

static DD sqrDouble(double x) {
  return valueOf(x).selfMultiply(x);
}