DD.withString constructor

DD.withString(
  1. String str
)

Creates a new DoubleDouble with value equal to the argument.

@param str the value to initialize by @throws NumberFormatException if str is not a valid representation of a number

Implementation

DD.withString(String str) : this.fromDD(parse(str));