operator ~/ method

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

Truncating division operator.

Implementation

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