operator ~/ method

BigInt operator ~/(
  1. Rational other
)

Truncating division operator.

See num.operator~/.

Implementation

BigInt operator ~/(Rational other) => (this / other).truncate();