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