int operator ~/(
num other
)

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().

If both operands are ints then a ~/ b performs the truncating integer division.

Source

/**
 * 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()`.
 *
 * If both operands are [int]s then `a ~/ b` performs the truncating
 * integer division.
 */
int operator ~/(num other);