operator ~/ method

  1. @override
Int32 operator ~/(
  1. dynamic other
)
override

Truncating division operator.

Implementation

@override
Int32 operator ~/(other) {
  if (other is Int64) {
    return (toInt64() ~/ other).toInt32();
  }
  return Int32(_i ~/ _toInt(other));
}