Particularly, I need to be able to combine the CGI monad with the IO monad, but an example of how to combine the IO monad with the Maybe monad might be even better...
|
|
In what sense do you want to combine the monads?
Can be evaluated to:
|
||
|
|
|
You don't exactly say how you want to combine
With this you can use the
Generally something that combines and modifies monads like this is called a monad transformer, and GHC comes with a package that includes monad transformers for common cases. If there is something in this monad transformer library that fits your scenario depends on how exactly you want to combine Maybe and IO. |
||
|
|
|
|
I assume you want to use the Maybe monad for early termination (like In that case you should use
MaybeT is a monad transformer version of the maybe monad. Monad transformers "add functionality" to other monads. |
||||
|
