plus

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

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

The result is equal to this + other.value.


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

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

The result is equal to this.value + other.