-
Notifications
You must be signed in to change notification settings - Fork 21
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
Move MonadRandom instances so they are no longer orphans #23
Comments
But the library does provide these instances. For example, the one you mention is here: https://github.com/byorgey/MonadRandom/blob/master/Control/Monad/Random.hs#L182 Did you encounter a situation where these did not work for you? |
Ah, it looks like there are two problems. One is that I was trying to use the pass through instance for |
Ah, yes, making them non-orphans so they show up in the Haddocks is a good idea. Would you be willing to make a PR for that? |
Yeah. |
Thanks! I'll leave this issue open with a different title. |
PR is up. |
For more information, see the file CHANGES.markdown Closes byorgey#23
Since
MonadRandom
is an mtl style typeclass and this library depends ontransformers
, it seems like it should provide the usual pass through instances. Things like:Is there a reason these were omitted, or would you take a PR for this?
The text was updated successfully, but these errors were encountered: