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