Exit<E, A> typedef

Exit<E, A> = Either<Cause<E>, A>

The result of a ZIO computation.

Exit is an Either with a left side (failure) of Cause and a right side (success) of A.

Implementation

typedef Exit<E, A> = Either<Cause<E>, A>;