You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we figure out whether a type is lifted/unlifted by calling reifyType on it to get its Kind.
This works well, but the coming version of th-abstraction now comes with this logic built-in, so it would be good to transition to rely on that functionality rather than redefining it here.
A tricky edge case is runtime rep polymorphic newtypes, but we have a test case for that.
The text was updated successfully, but these errors were encountered:
Currently we figure out whether a type is lifted/unlifted by calling
reifyType
on it to get itsKind
.This works well, but the coming version of
th-abstraction
now comes with this logic built-in, so it would be good to transition to rely on that functionality rather than redefining it here.A tricky edge case is runtime rep polymorphic newtypes, but we have a test case for that.
The text was updated successfully, but these errors were encountered: