I'm only beginning to become familiar with the concept of kinds, so bear with me if I am not formulating my questions well...
Values have Types:
3 :: Int
[1,2,3] :: [Int]
('c',True) :: (Char,Bool)
Types have Kinds:
the type 'Int' has kind *
the type '[Int]' also has kind *
but the type constructor [] has kind * -> *
similarly, the type (Char,Bool) has kind *
but the type constructor (,) has kind * -> * -> *
What do Kinds have?
Do they kinds have ilk, or genres, or breeds, or varieties?
How far does this sequence of abstraction go? Do we stop because we run out of words, or do we stop because going farther has no value? Or, perhaps, because we quickly reach the limits of human cognition and just can't wrap our heads around higher-genred kinds?
A related question: languages give us value-constructors (like a cons operator) to make values. Languages also give us type-constructors like (,) or [] to make types. Are there any languages that expose kind-constructors to make kinds?
Another edge case that I'm curious about: We apparently have a type that has no value, denoted as ⊥, called "the bottom type". Is there a kind that has no type: a bottom kind?
[Int]just*, while it is the list type constructor itself that has kind* -> *(given a typeait produces a type[a])? – gspr Jan 18 at 15:12