Tagged Questions
20
votes
3answers
650 views
Type theory: type kinds
I've read a lot of interesting things about type kinds, higher-kinded types and so on. By default Haskell supports two types of kind:
Simple type: *
Type constructor: * → *
Latest GHC's language ...
11
votes
2answers
343 views
Are there type signatures which Haskell can't verify?
This paper establishes that type inference (called "typability" in the paper) in System F is undecidable. What I've never heard mentioned elsewhere is the second result of the paper, namely that "type ...
8
votes
3answers
957 views
Understanding the type error: “expected signature Int*Int->Int but got Int*Int->Int”
The comments on Steve Yegge's post about server-side Javascript started discussing the merits of type systems in languages and this comment describes:
... examples from H-M style systems where you ...