The docs for Control.Monad.Trans.Error provide this example of combining two monads:
type ErrorWithIO e a = ErrorT e IO a
==> ErrorT (IO (Either e a))
I find this counterintuitive: even though ErrorT is supposedly wrapping IO, it looks like the error information has been injected into the IO action's result type. I would've expected it to be
==> ErrorT (Either e (IO a))
based on the usual meaning of the word "wrap".
To make matters more confusing, StateT does some of each:
type MyError e = ErrorT e Identity -- (see footnote)
type StateWithError s e a = StateT s (MyError e) a
==> StateT (s -> ErrorT (Either e (a, s)))
The state type s has been injected into the Either's Right side, but the whole Either has also been wrapped in a function.
To make matters even more confusing, if the monads are combined the other way around:
type ErrorWithState e s a = ErrorT e (State s) a
==> ErrorT (StateT (s -> (Either e a, s)))
the "outside" is still a function; it doesn't produce something like Either e (s -> (a, s)), where the state function is nested within the error type.
I'm sure there's some underlying logical consistency to all this, but I don't quite see it. Consequently I find it difficult to think about what it means to combine one monad with another, even when I have no trouble understanding what each monad means individually.
Can someone enlighten me?
(Footnote: I'm composing ErrorT with Identity so that StateWithError and ErrorWithState are consistent with each other, for illustrative purposes. Normally I'd just use StateWithError s e a = StateT s (Either e) a and forego the ErrorT layer.
ContT. Arguably recursion should be interleaved, but theListTintransformersdoesn't do this. – C. A. McCann Aug 17 '11 at 5:49ErrorTinstance of theMonadtype class. It's very straightforward and you'll see exactly why one might want to describe it as wrapping. You may also want to check out the source forlifttoo. – qubital Aug 17 '11 at 10:14