Skip to content
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

Make Param representationally polymorphic #137

Open
treeowl opened this issue Oct 15, 2021 · 0 comments
Open

Make Param representationally polymorphic #137

treeowl opened this issue Oct 15, 2021 · 0 comments

Comments

@treeowl
Copy link

treeowl commented Oct 15, 2021

You have

newtype instance Param n (a :: Type)
  = StarParam { getStarParam :: a}

If you're willing to drop getStarParam (and make the constructor name a tad weird), then on recent GHC you can change this to

newtype instance Param n (a :: TYPE rep)
  = StarParam a

This obviously does nothing for lenses, but it strikes me as the right thing for GenericN itself.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant