times

@JvmName(name = "timesVariableInt")
abstract operator fun Variable.times(other: Int): Polynomial(source)
@JvmName(name = "timesVariableUInt")
abstract operator fun Variable.times(other: UInt): Polynomial(source)
@JvmName(name = "timesVariableLong")
abstract operator fun Variable.times(other: Long): Polynomial(source)
@JvmName(name = "timesVariableULong")
abstract operator fun Variable.times(other: ULong): Polynomial(source)
@JvmName(name = "timesIntVariable")
abstract operator fun Int.times(other: Variable): Polynomial(source)
@JvmName(name = "timesUIntVariable")
abstract operator fun UInt.times(other: Variable): Polynomial(source)
@JvmName(name = "timesLongVariable")
abstract operator fun Long.times(other: Variable): Polynomial(source)
@JvmName(name = "timesULongVariable")
abstract operator fun ULong.times(other: Variable): Polynomial(source)
@JvmName(name = "timesVariableNumber")
abstract operator fun Variable.times(other: Number): Polynomial(source)(source)(source)(source)(source)
@JvmName(name = "timesNumberVariable")
abstract operator fun Number.times(other: Variable): Polynomial(source)(source)(source)(source)(source)
@JvmName(name = "timesVariableVariable")
abstract operator fun Variable.times(other: Variable): Polynomial(source)(source)(source)(source)(source)
@JvmName(name = "timesVariablePolynomial")
abstract operator fun Variable.times(other: Polynomial): Polynomial(source)(source)(source)(source)(source)
@JvmName(name = "timesPolynomialVariable")
abstract operator fun Polynomial.times(other: Variable): Polynomial(source)(source)(source)(source)(source)