Continuation
inline fun <T> Continuation(
context: CoroutineContext,
crossinline resumeWith: (Result<T>) -> Unit
): Continuation<T>
Creates a Continuation instance with the given context and implementation of resumeWith method.
inline fun <T> Continuation(
context: CoroutineContext,
crossinline resumeWith: (Result<T>) -> Unit
): Continuation<T>
Creates a Continuation instance with the given context and implementation of resumeWith method.