minus

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

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

The result is equal to this - other.value.


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

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

The result is equal to this.value - other.