Function

interface Function<I1, O>

Function to create an output from two inputs.

Parameters

<I1>

First Input Type

<O>

Output Type

Functions

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