div

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

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


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

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

The result is equal to this / other.value.


open operator fun Int.div(other: Number): Number(source)

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

The result is equal to this.value / other.


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

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

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