All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fuookami.ospf.kotlin.utils.operator.Log.kt Maven / Gradle / Ivy

There is a newer version: 1.0.29
Show newest version
package fuookami.ospf.kotlin.utils.operator

interface Log {
    fun log(base: Base): Ret?
    fun lg(): Ret?
    fun ln(): Ret?
}

fun  log(base: Base, natural: Natural): Ret? where Natural : Log {
    return natural.log(base)
}

fun  lg(natural: Natural): Ret? where Natural : Log {
    return natural.lg()
}

fun  ln(natural: Natural): Ret? where Natural : Log {
    return natural.ln()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy