sqr method

DD sqr()

Computes the square of this value.

@return the square of this value.

Implementation

DD sqr() {
  return this.multiplyDD(this);
}