Addition operator.
@override IntX operator +(Object other) { if (other is Int64) { return toInt64() + other; } return Int32(_i + _toInt(other)); }