Skip to main content
Version: 2.0.x

How to Migrate from Cats Effect to ZIO?

Cats IO[A] can be easily replaced with ZIO's Task[A] (an alias for ZIO[Any, Throwable, A]). Translation should be relatively straightforward. Below, you'll find tables showing the ZIO equivalents of various cats.*'s methods.

Methods on cats.FlatMap.Ops

catsZIO
flatMapflatMap
flattenflatten
productREvalzipRight
productLEvalzipLeft
mproductzipPar
flatTaptap