DD constructor

DD(
  1. double x
)

Creates a new DoubleDouble with value x.

@param x the value to initialize

Implementation

DD(double x) {
  init(x);
}