Action

fun interface Action<in T>(source)

Represents an action that can be performed on a value of type T.

Parameters

T

the type of the value that the action operates on

Functions

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

Invokes the operator function with the given value.