times

@JvmName(name = "timesVariableInt")
abstract operator fun V.times(other: Int): P
@JvmName(name = "timesVariableLong")
abstract operator fun V.times(other: Long): P
@JvmName(name = "timesIntVariable")
abstract operator fun Int.times(other: V): P
@JvmName(name = "timesLongVariable")
abstract operator fun Long.times(other: V): P
@JvmName(name = "timesVariableConstant")
abstract operator fun V.times(other: C): P
@JvmName(name = "timesConstantVariable")
abstract operator fun C.times(other: V): P
@JvmName(name = "timesVariableVariable")
abstract operator fun V.times(other: V): P
@JvmName(name = "timesVariablePolynomial")
abstract operator fun V.times(other: P): P
@JvmName(name = "timesPolynomialVariable")
abstract operator fun P.times(other: V): P