-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MonadError instance for Kleisli #1701
Comments
No particular reasons for its missing other than we didn't get to it yet. If you want, a PR will be more than welcome, otherwise, I can try add it before the next 1.0.0-MF release. |
Oh great! I'll grab this low-hanging-fruit and send you a PR ^^ |
Nevermind, I found that the instance was already added in #1618 by @peterneyens 🙂 |
sorry my bad |
the next release should be soon 🤞 |
Hello! I was looking for a
MonadError
instance forKleisli
but I saw it doesn't exist, any particular reason for not having it? I had to write one myself because I have a transformer that isReaderT[F, Env, A]
and I require an evidence forMonadError[F, Throwable]
(to handle unexpected exceptions when interfacing with imperative code)Thanks!
The text was updated successfully, but these errors were encountered: