Truncating division operator.
If either operand is a double then the result of the truncating division a ~/ b is equivalent to (a / b).truncate().toInt().
a ~/ b
(a / b).truncate().toInt()
If both operands are ints then a ~/ b performs the truncating integer division.