
29 Dec
2010
29 Dec
'10
11:06 a.m.
From: Control.Monad.Reader type Reader r = ReaderT r IdentityThe parameterizable reader monad. Computations are functions of a shared environment. The return function ignores the environment, while >>= passes the inherited environment to both subcomputations ============ Is there an unparameterizable reader monad? Michael