Task

interface Task<T, U>(source)

An interface for converting a type to another type.

Parameters

T

The type of the input to the task.

U

The type of the output from the task.

Inheritors

Functions

Link copied to clipboard
abstract operator fun invoke(input: T): U