ZIO<R, E, A>.syncExit constructor

ZIO<R, E, A>.syncExit(
  1. Exit<E, A> f()
)

Create a EIO from the resulting Exit value;

Implementation

factory ZIO.syncExit(Exit<E, A> Function() f) => ZIO.from((ctx) => f());