Tagged Questions

20
votes
3answers
660 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 ...
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, ...