Package-level declarations

Functions

Link copied to clipboard
@Composable
infix fun <T, R, V> @Composable (T) -> R.andThen(other: @Composable (R) -> V): @Composable (T) -> V

Composes two functions, applying the receiver function first and then the other function.

Link copied to clipboard
@Composable
infix fun <T, R, V> @Composable (R) -> V.compose(other: @Composable (T) -> R): @Composable (T) -> V

Composes two functions, applying the other function first and then the receiver function.

Link copied to clipboard
@Composable
operator fun @Composable () -> Unit.plus(other: @Composable () -> Unit): () -> <Error class: unknown class>

Combines two functions into one that executes both in sequence.

Link copied to clipboard
@Composable
infix fun Int.repeat(block: @Composable () -> Unit): <Error class: unknown class>

Repeats the execution of a function a specified number of times.

Link copied to clipboard
@Composable
operator fun Int.times(block: @Composable () -> Unit): <Error class: unknown class>

Repeats the execution of a function a specified number of times.

Link copied to clipboard
@Composable
operator fun @Composable () -> Unit.unaryPlus()

Executes the function.