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

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

package kt.mobius.functions

/** Interface for simple functions with two arguments.  */
fun interface BiFunction {

    fun apply(value1: T, value2: U): R
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy