Blaž Marinović
Blaž Marinović
Hi, I would like to take: * tap * tapBoth * tapCause * tapError * tapErrorTrace (at least those that make sense to ZPure)
If `tap` proves to be useless in this context, I'd like to take: * orElseFail * orElseOptional * orElseSucceed
I took: * fromEither[S, L, R](either: Either[L, R]): ZPure[S, S, Any, L, R] * fromOption[S, A](option: Option[A]): ZPure[S, S, Any, Unit, A] * suspend[S1, S2, R, E, A](pure: => ZPure[S1,...
#### For someone compiling the list of leftovers, this is what I implemented that was pushed to master: * fromEither[S, L, R](either: Either[L, R]): ZPure[S, S, Any, L, R] *...