monix/monix-bio

Implement rethrow

Avasil opened this issue · 1 comments

Something like

final def rethrow[E1 >: E, B](implicit ev: A <:< Either[E1, B]): BIO[E1, B]

to go from BIO[E, Either[E, B]] to BIO[E, B]

Prior art:

I'll work on that