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