Truncating division operator.
The result of the truncating division a ~/ b is equivalent to (a / b).truncate().
a ~/ b
(a / b).truncate()
int operator ~/(num other);