Tagged Questions
20
votes
3answers
662 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 ...
6
votes
2answers
262 views
Books for beginning type system theory [closed]
I want to study type system theory. I don't have any background in type system theory so I'm more or less a beginner (except the articles I've read on the subject and which I find intimidating because ...
5
votes
4answers
643 views
What is a type and effect system?
The Wikipedia artcile on Effect system is currently just a short stub and I've been wondering for a while as to what is an effect system.
Are there any languages that have an effect system in ...
4
votes
3answers
286 views
How to infer coercions?
I would like to know how to infer coercions (a.k.a. implicit conversions) during type inference. I am using the type inference scheme described in Top Quality Type Error Messages by Bastiaan Heeren, ...
1
vote
1answer
40 views
Type system algebra - use of derivation
I remember a web page describing interesting techniques in relation with some functional-programming task. The problem is that I can't remember what it was.
It had a binary tree node (Tree left, Tree ...
1
vote
2answers
216 views
What are “typing models”?
In Beyond Java(Section 2.2.9), Brute Tate claims that "typing model" is one of the problems of C++. What does that mean?