The Haskell Type of a Haskell Type.
Example
>>> :kind Either
Either :: * -> * -> *data Something a b c d = Whatever a b c d
>>> :kind Something
Something :: * -> * -> * -> *The Haskell Type of a Haskell Type.
>>> :kind Either
Either :: * -> * -> *data Something a b c d = Whatever a b c d
>>> :kind Something
Something :: * -> * -> * -> *