1.

Mention What Are Monads In Haskell?

Answer»

A MONAD in Haskell is just a type for which the >>= operation is defined. Haskell’s I/O is based on Monads. It’s a specific way of binding operations TOGETHER or in other words, it’s a way of wrapping things and provide a METHOD to perform operations on the wrapped stuff WITHOUT unwrapping it.

A monad in Haskell is just a type for which the >>= operation is defined. Haskell’s I/O is based on Monads. It’s a specific way of binding operations together or in other words, it’s a way of wrapping things and provide a method to perform operations on the wrapped stuff without unwrapping it.



Discussion

No Comment Found