limitPrecisionTo method
Implementation
void limitPrecisionTo(UcumDecimal other) {
// Precision can't be greater than other
if (precision > other.precision) {
precision = other.precision;
}
}
void limitPrecisionTo(UcumDecimal other) {
// Precision can't be greater than other
if (precision > other.precision) {
precision = other.precision;
}
}