Gopal S Akshintala
07/23/2020, 4:27 AMIO<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?