Multiplication operator.
@override IntX operator *(Object other) { if (other is Int64) { return toInt64() * other; } // TODO(rice) - optimize return (toInt64() * other).toInt32(); }