Understand Monad Transformers
Monad transformer(monadT
) is another significant concept in Haskell. To understand the monadT, it's compulsory to know how monad works and the mechanism of >>=
(bind). You can view the blog Understand Monad or any popular monads to learn about them.
In this blog, I will convey how we use monad transformer while how we recognize the idea that monad transformer creates a new monad. I will explain the function lift
as well.