concrete functor and monad transformers
#54AccumT tell
I'd like to add a tell
function to AccumT
that matches the behavior of the tell
function in WriterT
. It could be named something different. I don't particularly mind.
This doesn't do what you want:
*Control.Monad.Trans.Accum.Strict> runAccum (tell "a" >> tell "b" >> tell "c") "" ((),"aabaabc")
Dang. I must have misunderstood what AccumT actually does. Oh well.
- status set to closed