plus

open operator override fun Int.plus(other: Int): Int(source)
open operator override fun Int.plus(other: Long): Int(source)

Sums this number and the other integer as elements of the Ring.

The result is equal to this + other.value.


open operator override fun Int.plus(other: UInt): Int(source)
open operator override fun Int.plus(other: ULong): Int(source)

Sums this number and the other integer as elements of the Semiring.

The result is equal to this + other.value.


open operator override fun UInt.plus(other: Int): Int(source)
open operator override fun ULong.plus(other: Int): Int(source)

Sums this integer and the other number as elements of the Semiring.

The result is equal to this.value + other.


open operator override fun Long.plus(other: Int): Int(source)

Sums this integer and the other number as elements of the Ring.

The result is equal to this.value + other.