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 Rebase.Control.Monad.
Reader No documentation available.
module Rebase.Control.Monad.Trans.
Reader No documentation available.
-
rebase Rebase.Prelude No documentation available.
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).
type
Reader r = ReaderT r Identityrebase 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:
newtype
ReaderT r (m :: Type -> Type) arebase 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:
ReaderT :: (r -> m a) -> ReaderT r (m :: Type -> Type) arebase Rebase.Prelude No documentation available.
module Rebase.Text.ParserCombinators.
ReadP No documentation available.
module Rebase.Text.ParserCombinators.
ReadPrec No documentation available.
-