Hoogle Search

Within LTS Haskell 24.42 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. readPrec :: Read a => ReadPrec a

    base-compat Text.Read.Compat

    Proposed replacement for readsPrec using new-style parsers (GHC only).

  2. reads :: Read a => ReadS a

    base-compat Text.Read.Compat

    equivalent to readsPrec with a precedence of 0.

  3. readsPrec :: Read a => Int -> ReadS a

    base-compat Text.Read.Compat

    attempts to parse a value from the front of the string, returning a list of (parsed value, remaining string) pairs. If there is no successful parse, the returned list is empty. Derived instances of Read and Show satisfy the following:

    That is, readsPrec parses the string produced by showsPrec, and delivers the value that showsPrec started with.

  4. readBinP :: (Eq a, Num a) => ReadP a

    base-compat Text.Read.Lex.Compat

    No documentation available.

  5. readMany :: Read a => String -> [a]

    utility-ht Text.Read.HT

    No documentation available.

  6. readsInfixPrec :: (Read a, Read b) => String -> Int -> Int -> (a -> b -> c) -> ReadS c

    utility-ht Text.Read.HT

    Parse a string containing an infix operator.

  7. readFile :: FilePath -> SourceT IO ByteString

    servant Servant.Types.SourceT

    Read file.

    >>> foreach fail BS.putStr (readFile "servant.cabal")
    cabal-version:      3.0
    name:               servant
    ...
    

  8. readSoFar :: StreamFileStatus -> Int64

    http-conduit Network.HTTP.Client.Conduit

    No documentation available.

  9. readsPrecDefault :: (GRead (Rep1 f a), Generic1 f) => Int -> ReadS (f a)

    transformers-compat Data.Functor.Classes.Generic.Internal

    A default readsPrec implementation for Generic1 instances that leverages Read1.

  10. readYamlFile :: FromYaml a => FilePath -> IO a

    yaml Data.Yaml.Parser

    No documentation available.

Page 107 of many | Previous | Next