fuookami.ospf.kotlin.utils.operator.Times.kt Maven / Gradle / Ivy
package fuookami.ospf.kotlin.utils.operator
interface Times {
operator fun times(rhs: Rhs): Ret
}
interface TimesAssign {
operator fun timesAssign(rhs: Rhs)
}
interface Cross {
infix fun x(rhs: Rhs): Ret
}