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.

  1. type Reader r = ReaderT r Identity

    protolude Protolude

    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:

  2. newtype ReaderT r (m :: Type -> Type) a

    protolude Protolude

    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:

  3. ReaderT :: (r -> m a) -> ReaderT r (m :: Type -> Type) a

    protolude Protolude

    No documentation available.

  4. module Control.Monad.ReaderIO

    No documentation available.

  5. newtype ReaderIO e a

    reflex Control.Monad.ReaderIO

    An approximate clone of RIO from the rio package, but not based on ReaderT. The trouble with ReaderT is that its third type argument has a nominal role, so we can't coerce through it when it's wrapped in some other data type. Ugh.

  6. ReaderIO :: (e -> IO a) -> ReaderIO e a

    reflex Control.Monad.ReaderIO

    No documentation available.

  7. newtype ReadPhase (x :: k) a

    reflex Reflex.Spider.Internal

    No documentation available.

  8. ReadPhase :: ResultM x a -> ReadPhase (x :: k) a

    reflex Reflex.Spider.Internal

    No documentation available.

  9. ReadFromPipe :: PipeMode

    MissingH System.Cmd.Utils

    No documentation available.

  10. module Control.Arrow.Transformer.Reader

    Arrow transformer that adds a read-only state (i.e. an environment).

Page 384 of many | Previous | Next