Tagged Questions
1
vote
3answers
543 views
Simplest example of need for “unification” in type inference
I'm trying to get my head around how type inference is implemented.
In particularly, I don't quite see where/why the heavy lifting of "unification" comes into play.
I'll give an example in "pseudo ...
1
vote
1answer
531 views
Type inference to unification problem
Has anyone an idea how the type inference problem
E > hd (cons 1 nil) : α0
with the typing environment
E={
hd : list(α1 ) → α1 ,
cons : α2 ...