Function2

interface Function2<I1, I2, O>

Function to create an output from two inputs.

Parameters

<I1>

First Input Type

<I2>

Second Input Type

<O>

Output Type

Functions

Link copied to clipboard
abstract fun apply(input1: I1, input2: I2): O
Converts I1, I2 to O.