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, it prints type instantiations like this:
forall t1,t2 in TYPES, R in REL(t1,t2).
forall p :: t1 -> Bool.
forall q :: t2 -> Bool.
(forall (x, y) in R. p x = q y)
==> (forall (z, v) in lift{[]}(R).
(f_{t1} p z, f_{t2} q v) in lift{[]}(R))
but these days, Haskell has “Proper” syntax for this:
forall t1,t2 in TYPES, R in REL(t1,t2).
forall p :: t1 -> Bool.
forall q :: t2 -> Bool.
(forall (x, y) in R. p x = q y)
==> (forall (z, v) in lift{[]}(R).
(f @t1 p z, f @t2 q v) in lift{[]}(R))
and I think this library should use it.
The text was updated successfully, but these errors were encountered:
Currently, it prints type instantiations like this:
but these days, Haskell has “Proper” syntax for this:
and I think this library should use it.
The text was updated successfully, but these errors were encountered: