valueOfStr static method

DD valueOfStr(
  1. String str
)

Converts the string argument to a DoubleDouble number.

@param str a string containing a representation of a numeric value @return the extended precision version of the value @throws NumberFormatException if s is not a valid representation of a number

Implementation

static DD valueOfStr(String str) {
  return parse(str);
}