selfSqr method

DD selfSqr()

Squares this object. To prevent altering constants, this method must only be used on values known to be newly created.

@return the square of this value.

Implementation

DD selfSqr() {
  return this.selfMultiplyDD(this);
}