Srki Rakic
06/20/2020, 12:59 AM0.11.0-SNAPSHOT sources? It doesn’t seem to be on master. Specifically I’m looking for below function in 0.11.-SNAPSHOT arrow-core
suspend fun <E, A> fx(c: suspend BindSyntax<EitherPartialOf<E>>.() -> A): Either<E, A> =
suspendCoroutineUninterceptedOrReturn sc@{ cont ->
val continuation = EitherSContinuation(cont as Continuation<EitherOf<E, A>>)
continuation.startCoroutineUninterceptedOrReturn {
Right(c())
}
}