commonMain.com.zegreatrob.testmints.action.SimpleExecutableAction.kt Maven / Gradle / Ivy
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