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 Aftovolio.Ukrainian.ReadDurations

    Functions to read the properties data from the files with the special Haskell-like syntaxis.

  2. ReadIndexCache :: FilePath -> CabalInstallException

    cabal-install Distribution.Client.Errors

    No documentation available.

  3. ReadTarballPackageTarget :: FilePath -> FilePath -> CabalInstallException

    cabal-install Distribution.Client.Errors

    No documentation available.

  4. module Distribution.Client.Types.ReadyPackage

    No documentation available.

  5. ReadyPackage :: srcpkg -> GenericReadyPackage srcpkg

    cabal-install Distribution.Client.Types.ReadyPackage

    No documentation available.

  6. type ReadyPackage = GenericReadyPackage ConfiguredPackage UnresolvedPkgLoc

    cabal-install Distribution.Client.Types.ReadyPackage

    No documentation available.

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

  8. type ReadP r a = Parser r Char a

    cabal-install Distribution.Deprecated.ReadP

    No documentation available.

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

  10. type Reader r = ReaderT r Identity

    can-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:

Page 411 of many | Previous | Next