fuookami.ospf.kotlin.utils.operator.Exp.kt Maven / Gradle / Ivy
package fuookami.ospf.kotlin.utils.operator
interface Exp {
fun exp(): Ret
}
fun exp(index: Index): Ret where Index : Exp {
return index.exp()
}
package fuookami.ospf.kotlin.utils.operator
interface Exp {
fun exp(): Ret
}
fun exp(index: Index): Ret where Index : Exp {
return index.exp()
}