times

@JvmName(name = "timesConstantInt")
abstract operator fun C.times(other: Int): C
@JvmName(name = "timesConstantLong")
abstract operator fun C.times(other: Long): C
@JvmName(name = "timesIntConstant")
abstract operator fun Int.times(other: C): C
@JvmName(name = "timesLongConstant")
abstract operator fun Long.times(other: C): C
abstract operator override fun P.times(other: Int): P
abstract operator override fun P.times(other: Long): P
abstract operator override fun Int.times(other: P): P
abstract operator override fun Long.times(other: P): P
@JvmName(name = "timesConstantConstant")
abstract operator fun C.times(other: C): C
abstract operator fun C.times(other: P): P
abstract operator fun P.times(other: C): P
abstract operator override fun P.times(other: P): P