kotlin.coroutines.experimental.intrinsics.createCoroutineUnchecked
createCoroutineUnchecked
fun <T> (suspend () -> T).createCoroutineUnchecked( completion: Continuation<T> ): Continuation<Unit>
Platform and version requirements: Kotlin 1.1
Creates a coroutine without receiver and with result type T. This function creates a new, fresh instance of suspendable computation every time it is invoked.
To start executing the created coroutine, invoke resume(Unit)
on the returned Conti