-
Notifications
You must be signed in to change notification settings - Fork 43
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
Add remaining instances for Comonad transformers #145
Conversation
🏓 @garyb |
I did take a look at this, but I don't feel qualified to approve it, since I'm not that familiar with comonad patterns. Perhaps @MonoidMusician or @LiamGoodacre could chime in, I think they're more theorypilled than me? 😉 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yup, looks good to me! It’s doing the “obvious” thing, which is just the opposite of the usual monadic constructions.
Ah okay. I did once implement some comonad stuff and it seemed way too trivial to be correct. I asked someone and they weren't sure if it was right either. 😄 |
Yeah, this is just lifting instances like |
Are we good to merge this btw? |
lowerTrack :: forall t m w a. ComonadTrans t => ComonadTraced m w => m -> t w a -> a | ||
lowerTrack m = track m <<< lower |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this an implementation detail, or something to be exported? (It's currently being implicitly exported).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
whoops, yeah this should not be exported
Description of the change
Adds
ComonadAsk
,ComonadEnv
, andComonadTraced
instances forStoreT
,EnvT
, andTracedT
Closes #35
Checklist: