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 a = Text -> Either String a

    flags-applicative Flags.Applicative

    The type used to read flag values.

  2. module Control.Monad.Trans.Has.Reader

    No documentation available.

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

    has-transformers Control.Monad.Trans.Has.Reader

    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:

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

    has-transformers Control.Monad.Trans.Has.Reader

    No documentation available.

  5. ReadStderr :: forall (i :: StreamMode) (o :: StreamMode) (lp :: Lifecycle) (ls :: Lifecycle) (a :: Type -> Type) . Subprocess ('SubprocMode i o 'Piped lp ls) a ByteString

    heftia-effects Control.Monad.Hefty.Concurrent.Subprocess

    No documentation available.

  6. ReadStdout :: forall (i :: StreamMode) (e :: StreamMode) (lp :: Lifecycle) (ls :: Lifecycle) (a :: Type -> Type) . Subprocess ('SubprocMode i 'Piped e lp ls) a ByteString

    heftia-effects Control.Monad.Hefty.Concurrent.Subprocess

    No documentation available.

  7. module Control.Monad.Hefty.Reader

    Effects that can be used to hold environmental values in the context. Environmental values are immutable and do not change across procedures, but you can modify the value within a local scope using the local operation.

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

    hledger-web Hledger.Web.Import

    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).

  9. ReadFile :: Int -> FilePath -> (t -> r) -> HppF t r

    hpp Hpp.Types

    No documentation available.

  10. ReadNext :: Int -> FilePath -> (t -> r) -> HppF t r

    hpp Hpp.Types

    No documentation available.

Page 415 of many | Previous | Next