Truncating division operator.
The result of the truncating division a ~/ b is equivalent to (a / b).truncate().
a ~/ b
(a / b).truncate()
Rational operator ~/(Rational other) => (this / other).truncate();