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

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

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

interface Plus {
    operator fun plus(rhs: Rhs): Ret
}

interface PlusTrait {
    operator fun Self.plus(rhs: Rhs): Ret
}

interface PlusAssign {
    operator fun plusAssign(rhs: Rhs)
}

interface Inc {
    operator fun inc(): Inc
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy