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

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

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

interface Rem {
    operator fun rem(rhs: Rhs): Ret

    infix fun mod(rhs: Rhs) = this % rhs
}

interface RemAssign {
    operator fun remAssign(rhs: Rhs)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy