divInt method

UcumDecimal divInt(
  1. UcumDecimal other
)

Implementation

UcumDecimal divInt(UcumDecimal other) {
  final UcumDecimal t = divide(other);
  return t.trunc();
}