DEV Community

Sameer
Sameer

Posted on

Answer:

The kind of ordinary types like Int and Char, whose instances are values, is *. The kind of unary type constructors like Maybe is * -> *; binary type constructors like Either have (curried) kind * -> * -> *, and so on. You…

Top comments (0)