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

Type applications should be unified #23

Open
atennapel opened this issue Jan 17, 2019 · 0 comments
Open

Type applications should be unified #23

atennapel opened this issue Jan 17, 2019 · 0 comments

Comments

@atennapel
Copy link

atennapel commented Jan 17, 2019

At the moment you're doing the following in subtype:
t1 t2 <: t1' t2' => t1 <: t1' /\ t2 <: t2'
But you don't know in general whether to compare it covariantly or contravariantly.
If I define, for example:
type Fun a b = a -> b
Then Fun a <: Fun b should actually be compared contravariantly b <: a.
So one solution is to give up and switch to unification in the case of type applications. Comparing foralls by alpha-equality.
That's also what Purescript does (and what I am planning to do for my own language).

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