operator ~/ method

Decimal operator ~/(
  1. Decimal other
)

Truncating division operator.

The result of the truncating division a ~/ b is equivalent to (a / b).truncate().

Implementation

Decimal operator ~/(Decimal other) =>
    Decimal._fromRational(_rational ~/ other._rational);