Hey this may be a stupid question, but how do I ch...
# arrow
s
Hey this may be a stupid question, but how do I checkout
0.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
Copy code
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())
        }
      }