plus

operator fun () -> Unit.plus(other: () -> Unit): () -> <Error class: unknown class>

Combines two functions into one that executes both in sequence.

Receiver

A function that returns Unit.

Return

A new function that executes the receiver function followed by the other function.

Parameters

other

Another function that returns Unit.