minus

open operator override fun Float.minus(other: Int): Float(source)
open operator override fun Float.minus(other: UInt): Float(source)
open operator override fun Float.minus(other: Long): Float(source)
open operator override fun Float.minus(other: ULong): Float(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 Int.minus(other: Float): Float(source)
open operator override fun UInt.minus(other: Float): Float(source)
open operator override fun Long.minus(other: Float): Float(source)
open operator override fun ULong.minus(other: Float): Float(source)

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

The result is equal to this.value - other.


open operator override fun Float.minus(other: Float): Float(source)

Subtracts this and the other numbers in terms of the Ring.