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

commonMain.com.zegreatrob.testmints.action.SimpleExecutableAction.kt Maven / Gradle / Ivy

There is a newer version: 12.1.31
Show newest version
package com.zegreatrob.testmints.action

interface SimpleExecutableAction : ExecutableAction {
    override fun execute(dispatcher: T) = performFunc(dispatcher)
    val performFunc: (T) -> R
    fun  A.link(performFunc: (T, A) -> R): (T) -> R = { performFunc(it, this) }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy