Multiplication of BigInt and Int.MIN_VALUE doesn't...
# mathematics
z
Multiplication of BigInt and Int.MIN_VALUE doesn't work fine:
Copy code
public operator fun times(other: Int): BigInt = if (other > 0)
        this * kotlin.math.abs(other).toUInt()
    else
        -this * kotlin.math.abs(other).toUInt()
I'll fix it