BiFunction

fun interface BiFunction<T, U, R>

Interface for simple functions with two arguments.

Functions

Link copied to clipboard
abstract fun apply(value1: T, value2: U): R