I know how to use functions from each monad inside a do
block. But once i'm finished how do I run the computation and get the result?
run :: (MonadError Error m, MonadState State m) => m Int -> Int
run = ???
I know how to use functions from each monad inside a do
block. But once i'm finished how do I run the computation and get the result?
run :: (MonadError Error m, MonadState State m) => m Int -> Int
run = ???
Copyright © 2021 Jogjafile Inc.
The whole point of
mtl
is that you don't specify your concrete monad transformer stack - you just specify that it has to handle errors and hold state.However, once you actually want to run this action, you do need to tie yourself down to a particular monad transformer stack. That stack will inform how you can "run" your monadic action. In your case, it looks like you probably want to go with
ExcepT Error (State State)
:Note that this isn't the only choice of a concrete stack you could have made. In fact, you could even swap the order of the
State
andExcept
and chooseStateT State (Either Error)
as your monad!The fact that
mtl
says nothing about the order of monads in your stack is one of its shortcomings (and one of the reasons why some people prefer to just stick withtransformers
).