int operator ~/(
num other
)

Truncating division operator.

The result of the truncating division a ~/ b is equivalent to (a / b).truncate().

Source

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