Created
February 11, 2020 12:27
-
-
Save dnaumenko/65340b7980c3d6501e8c34e07bdba78a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| override def flatMap[B](f: A => Env[Ctx, B]): Env[Ctx, B] = | |
| EnvCtx(zio.flatMap(a => f(a))) // compile error! f(a) should return ZIO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment