Now that BIO is gone and in this section `IO<Ei...
# arrow
g
Now that BIO is gone and in this section
IO<Either<E, A>> vs suspend () -> Either<E, A>
,
suspend () -> Either<E, A>
is shown as an alternative to ``IO<Either<E, A>>` , how to elegantly/idiomatically handle exceptions thrown inside
Either.fx
block without using try-catch and switch either to left with the exception? (Something
IO.attempt().flattenEither().unsafeRunSyncEither()
we had in BIO?