Skip to content

Instantly share code, notes, and snippets.

@vvsevolodovich
Created June 2, 2020 13:34
Show Gist options
  • Save vvsevolodovich/885e10bf4b85fc286aacfaad86da5349 to your computer and use it in GitHub Desktop.
Save vvsevolodovich/885e10bf4b85fc286aacfaad86da5349 to your computer and use it in GitHub Desktop.
public fun <R, T> (suspend R.() -> T).startCoroutine(
receiver: R,
completion: Continuation<T>
) {
createCoroutineUnchecked(receiver, completion).resume(Unit)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment