Hacker News new | ask | show | jobs
by mjaniczek 664 days ago
How do you need HKTs for monads?
1 comments

You need them to express a type constraint that’s generic for all monads. I might have gone a bit too far saying monads would be impossible without HKTs, but a single Monad type class would be, and you lose a lot of the power of monads if you don’t have that.
You can do monads without HKT but it is much more manual. You need to compose monad transformers yourself, for example.