plus

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

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

The result is equal to this + other.value.


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

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

The result is equal to this.value + other.


abstract operator fun Number.plus(other: Number): Number(source)

Sums this and the other numbers in terms of the Semiring.