IEEErem

Computes the remainder of division of this value by the divisor value according to the IEEE 754 standard.

inline fun Double.IEEErem(divisor: Double): Double(source)
import kotlin.math.IEEErem

fun main() {
    val dividend = 10.0
    val divisor = 3.0

    val remainder = dividend.IEEErem(divisor)
    println("IEEE remainder of $dividend / $divisor is $remainder")
}

Source