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. module Rebase.Control.Monad.Reader

    No documentation available.

  2. module Rebase.Control.Monad.Trans.Reader

    No documentation available.

  3. data ReadPrec a

    rebase Rebase.Prelude

    No documentation available.

  4. type ReadS a = String -> [(a, String)]

    rebase Rebase.Prelude

    A parser for a type a, represented as a function that takes a String and returns a list of possible parses as (a,String) pairs. Note that this kind of backtracking parser is very inefficient; reading a large structure may be quite slow (cf ReadP).

  5. type Reader r = ReaderT r Identity

    rebase Rebase.Prelude

    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:

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

    rebase Rebase.Prelude

    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:

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

    rebase Rebase.Prelude

    No documentation available.

  8. module Rebase.Text.ParserCombinators.ReadP

    No documentation available.

  9. module Rebase.Text.ParserCombinators.ReadPrec

    No documentation available.

  10. module FRP.Rhine.ClSF.Reader

    Create and remove ReaderT layers in ClSFs.

Page 398 of many | Previous | Next