copy static method

DD copy(
  1. DD dd
)

Creates a new DoubleDouble with the value of the argument.

@param dd the DoubleDouble value to copy @return a copy of the input value

Implementation

static DD copy(DD dd) {
  return DD.fromDD(dd);
}