Package de.comuny.trinity.core.util

Functions

Link copied to clipboard
inline fun <VALUE, EXCEPTION : Exception> destructureValueOrThrowException(pair: Pair<VALUE?, EXCEPTION?>): VALUE
Link copied to clipboard
inline fun <FIRST, SECOND> ifOnlyOne(    first: FIRST?,     second: SECOND?,     firstNotNull: (FIRST) -> Unit,     secondNotNull: (SECOND) -> Unit)
Link copied to clipboard
inline suspend fun <FIRST, SECOND> ifOnlyOneSuspend(    first: FIRST?,     second: SECOND?,     firstNotNull: (FIRST) -> Unit,     secondNotNull: (SECOND) -> Unit)
Link copied to clipboard
inline fun <T> nullifyException(block: () -> T): T?
Link copied to clipboard
suspend fun <T> ProducerScope<T>.sendAll(flow: Flow<T>)

Collects all the values from the given flow and send them to the producer. It is a shorthand for flow.collect { value -> send(value) }.

Link copied to clipboard
suspend fun <RESPONSE> waitForResponse(timeout: Duration, emitLambda: suspend ((RESPONSE) -> Unit) -> Unit): RESPONSE
Link copied to clipboard
suspend fun <FLOW, RESPONSE> FlowCollector<FLOW>.waitForResponseInFlow(timeout: Duration, emitLambda: suspend FlowCollector<FLOW>.((RESPONSE) -> Unit) -> Unit): RESPONSE

Properties

Link copied to clipboard
val Any?.exhaustive: Unit

Enforce when to cover all possible options.