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
Right now the definition is like data Predicate = forall f. TermEntry f => Predicate .... I think it makes more sense to have data Predicate f = Predicate ... and let the type erasure start only at the Goal level. This is a big refactor for an arguable imrpovement in code quality though, so idk...
The text was updated successfully, but these errors were encountered:
Right now the definition is like
data Predicate = forall f. TermEntry f => Predicate ...
. I think it makes more sense to havedata Predicate f = Predicate ...
and let the type erasure start only at theGoal
level. This is a big refactor for an arguable imrpovement in code quality though, so idk...The text was updated successfully, but these errors were encountered: