Package com. github. michaelbull. result. coroutines. binding
Types
Functions
Link copied to clipboard
inline suspend fun <V, E> binding(crossinline block: suspend SuspendableResultBinding<E>.() -> V): Result<V, E>
Content copied to clipboard
Suspending variant of binding. The suspendable block runs in a new CoroutineScope, inheriting the parent CoroutineContext. This new scope is cancelled once a failing bind is encountered, eagerly cancelling all child jobs.