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 extensions ConstraintKinds adds new kind:
- Type parameter constraint:
Constraint
Also after reading this mailing list it becomes clear, that another type of kind may exists, but not supported by GHC (but such support is implemented in .NET):
- Unboxed type:
#
I've learned about polymorphic kinds and I think I've understand the idea. Also Haskell supports explicitly-kinded quantification.
So my questions are:
- Is there any other types of kinds exists?
- What are other kind-releated language features exists?
- What does
subkindingmeans? Where it's implemented/useful? - Is there a type system on top of
kinds, likekindsare type system on top oftypes? (just interesting)