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 Aftovolio.Ukrainian.
ReadDurations Functions to read the properties data from the files with the special Haskell-like syntaxis.
ReadIndexCache :: FilePath -> CabalInstallExceptioncabal-install Distribution.Client.Errors No documentation available.
ReadTarballPackageTarget :: FilePath -> FilePath -> CabalInstallExceptioncabal-install Distribution.Client.Errors No documentation available.
module Distribution.Client.Types.
ReadyPackage No documentation available.
ReadyPackage :: srcpkg -> GenericReadyPackage srcpkgcabal-install Distribution.Client.Types.ReadyPackage No documentation available.
type
ReadyPackage = GenericReadyPackage ConfiguredPackage UnresolvedPkgLoccabal-install Distribution.Client.Types.ReadyPackage No documentation available.
module Distribution.Deprecated.
ReadP This is a library of parser combinators, originally written by Koen Claessen. It parses all alternatives in parallel, so it never keeps hold of the beginning of the input string, a common source of space leaks with other parsers. The (+++) choice combinator is genuinely commutative; it makes no difference which branch is "shorter". See also Koen's paper Parallel Parsing Processes (http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.19.9217). This version of ReadP has been locally hacked to make it H98, by Martin Sjögren mailto:[email protected] The unit tests have been moved to UnitTest.Distribution.Deprecated.ReadP, by Mark Lentczner mailto:[email protected]
type
ReadP r a = Parser r Char acabal-install Distribution.Deprecated.ReadP No documentation available.
type
ReadS a = String -> [(a, String)]cabal-install Distribution.Deprecated.ReadP 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 Identitycan-i-haz Control.Monad.Reader.Has 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: