Zhelenskiy
05/10/2021, 4:43 PMpublic operator fun times(other: Int): BigInt = if (other > 0)
this * kotlin.math.abs(other).toUInt()
else
-this * kotlin.math.abs(other).toUInt()
Zhelenskiy
05/10/2021, 4:45 PMZhelenskiy
05/10/2021, 10:55 PM