multiply method

LexoDecimal multiply(
  1. LexoDecimal other
)

Implementation

LexoDecimal multiply(LexoDecimal other) {
  return LexoDecimal.make(mag.multiply(other.mag), sig + other.sig);
}