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

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

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

interface Div {
    operator fun div(rhs: Rhs): Ret
}

interface DivAssign {
    operator fun divAssign(rhs: Rhs)
}

interface IntDiv {
    infix fun intDiv(rhs: Rhs): Ret
}


interface IntDivAssign {
    infix fun intDivAssign(rhs: Rhs)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy