operator ~/ method

int operator ~/ (
  1. num other
)
override

Truncating division operator.

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

Implementation

int operator ~/(num other);