blob: 75405aeb698787974e0a6236c5316ffeeaf36e3e [file] [log] [blame]
package kotlinx.coroutines.experimental.intrinsics
import kotlin.coroutines.Continuation
import kotlin.coroutines.intrinsics.SUSPENDED_MARKER
/**
* Starts coroutine without receiver and with result type [T].
* This function creates and start a new, fresh instance of suspendable computation every time it is invoked.
* If the coroutine never suspends, then its result is returned directly,
* otherwise it returns [SUSPENDED_MARKER] and the [completion] continuation is invoked when coroutine completes.
*/
@Suppress("PLATFORM_CLASS_MAPPED_TO_KOTLIN", "UNCHECKED_CAST")
public fun <T> (suspend () -> T).startCoroutineOrReturn(completion: Continuation<T>): Any? =
(this as kotlin.jvm.functions.Function1<Continuation<T>, Any?>).invoke(completion)