Package-level declarations

Functions

Link copied to clipboard
inline fun <Context1, Result> context(context1: Context1, block: (Context1) -> Result): Result

Runs the block with the provided context parameter context1.

inline fun <Context1, Context2, Result> context(context1: Context1, context2: Context2, block: (Context1, Context2) -> Result): Result

Runs the block with the provided context parameters context1, context2.

inline fun <Context1, Context2, Context3, Result> context(context1: Context1, context2: Context2, context3: Context3, block: (Context1, Context2, Context3) -> Result): Result

Runs the block with the provided context parameters context1, context2, context3.

Link copied to clipboard
inline fun repeat(times: UInt, action: (UInt) -> Unit)

Runs the action the times number of times providing arguments 0u, 1u, ..., times-1u consequently into it.

Link copied to clipboard
inline fun <Result> scope(block: () -> Result): Result

Simple function that is useful to create nested scopes. It is the same as the run function but without extension-function overload.