operator ~/ method

BigInt operator ~/(
  1. Decimal other
)

Truncating division operator.

See num.operator~/.

Implementation

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