plus

@JvmName(name = "plusConstantInt")
abstract operator fun C.plus(other: Int): C
@JvmName(name = "plusConstantLong")
abstract operator fun C.plus(other: Long): C
@JvmName(name = "plusIntConstant")
abstract operator fun Int.plus(other: C): C
@JvmName(name = "plusLongConstant")
abstract operator fun Long.plus(other: C): C
abstract operator override fun P.plus(other: Int): P
abstract operator override fun P.plus(other: Long): P
abstract operator override fun Int.plus(other: P): P
abstract operator override fun Long.plus(other: P): P
@JvmName(name = "plusConstantConstant")
abstract operator fun C.plus(other: C): C
abstract operator fun C.plus(other: P): P
abstract operator fun P.plus(other: C): P
abstract operator override fun P.plus(other: P): P