setValueDD method

DD setValueDD(
  1. DD value
)

Set the value for the DD object. This method supports the mutating operations concept described in the class documentation (see above). @param value a DD instance supplying an extended-precision value. @return a self-reference to the DD instance.

Implementation

DD setValueDD(DD value) {
  initFromDD(value);
  return this;
}