min method

DD min(
  1. DD x
)

Computes the minimum of this and another DD number.

@param x a DD number @return the minimum of the two numbers

Implementation

DD min(DD x) {
  if (this.le(x)) {
    return this;
  } else {
    return x;
  }
}