SimpleTransformation

A functional interface representing a transformation operation from a given input type to a new output type.

Parameters

Output

The type of the input that the transformation operates on.

NewOutput

The type of the output produced by the transformation.

Functions

Link copied to clipboard
abstract operator fun invoke(output: Output): NewOutput

Transforms the given input of type Output into an instance of type NewOutput.