Hoogle Search
Within LTS Haskell 24.51 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
module Control.Monad.Trans.Memo.
ReaderCache Generic StateCache - wrapper around ReaderT
data
ReaderCache c (m :: Type -> Type) amonad-memo Control.Monad.Trans.Memo.ReaderCache No documentation available.
module Control.Monad.Ology.Specific.
ReaderStateT No documentation available.
type
ReaderStateT (f :: Type -> Type) (m :: Type -> Type) = StateT WRaised f m mmonadology Control.Monad.Ology.Specific.ReaderStateT No documentation available.
module Control.Monad.Ology.Specific.
ReaderT No documentation available.
type
Reader r = ReaderT r Identitymonadology Control.Monad.Ology.Specific.ReaderT The parameterizable reader monad. Computations are functions of a shared environment. The return function ignores the environment, while m >>= k passes the inherited environment to both subcomputations:
newtype
ReaderT r (m :: Type -> Type) amonadology Control.Monad.Ology.Specific.ReaderT The reader monad transformer, which adds a read-only environment to the given monad. The return function ignores the environment, while m >>= k passes the inherited environment to both subcomputations:
ReaderT :: (r -> m a) -> ReaderT r (m :: Type -> Type) amonadology Control.Monad.Ology.Specific.ReaderT No documentation available.
-
No documentation available.
type
Reader r = ReaderT r Identitymtl-prelude MTLPrelude The parameterizable reader monad. Computations are functions of a shared environment. The return function ignores the environment, while m >>= k passes the inherited environment to both subcomputations: