We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently,
class (Monad m, MonadIO m, MonadCatchIO m, MonadPlus m, Functor m, Applicative m, Alternative m) => MonadSnap m
For GHC before 7.10, that should be
class (MonadCatchIO m, MonadPlus m, Alternative m) => MonadSnap m
For GHC 7.10 and later, it should be
class (MonadCatchIO m, MonadPlus m) => MonadSnap m
Note also that the package snap-core gets MonadCatchIO from is marked obsolete; it's been replaced by another.
snap-core
MonadCatchIO
The text was updated successfully, but these errors were encountered:
Is that a problem? I don't think it warns, does it? I actually prefer the expanded list for didactic reasons.
Re: MonadCatchIO, we're not using it in 1.0 (which is getting close to being released).
Sorry, something went wrong.
I'm not sure if it warns with -Wall or not. It's mostly a lot to dig through to figure out the essence of what it means. And it looks ugly.
-Wall
No branches or pull requests
Currently,
For GHC before 7.10, that should be
For GHC 7.10 and later, it should be
Note also that the package
snap-core
getsMonadCatchIO
from is marked obsolete; it's been replaced by another.The text was updated successfully, but these errors were encountered: