operator ~/ method

UcumDecimal operator ~/(
  1. UcumDecimal other
)

Implementation

UcumDecimal operator ~/(UcumDecimal other) {
  return divide(other).trunc();
}