div

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

Divides this number by other integer as elements of the Field.

The result is equal to this / other.value.


open operator override fun Int.div(other: Float): Float(source)

Divides this integer by other number as elements of the Field.

The result is equal to this.value / other.


open operator override fun UInt.div(other: Float): Float(source)
open operator override fun Long.div(other: Float): Float(source)
open operator override fun ULong.div(other: Float): Float(source)

Divides this integer by other number as elements of the Field.

The result is equal to this.value / other`.


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

Divides this number by other number in terms of the Field.