context

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

Runs the block with the provided context parameter context1.

It's an analogue to with but for context parameter.


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

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

It's an analogue to with but for context parameters.


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

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

It's an analogue to with but for context parameters.