ZIO<R, E, A>.fromExit constructor

ZIO<R, E, A>.fromExit(
  1. Exit<E, A> ea
)

Create a ZIO from the given Exit.

Implementation

factory ZIO.fromExit(Exit<E, A> ea) => ZIO.from((ctx) => ea);