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

commonMain.functions.Function.kt Maven / Gradle / Ivy

package kt.mobius.functions

import kotlin.js.JsName

/** Interface for simple functions.  */
fun interface Function {

    @JsName("apply")
    fun apply(value: T): R
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy