Hoogle Search

Within LTS Haskell 24.32 (ghc-9.10.3)

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

  1. readParen :: Bool -> ReadS a -> ReadS a

    base-compat Text.Read.Compat

    readParen True p parses what p parses, but surrounded with parentheses. readParen False p parses what p parses, but optionally surrounded with parentheses.

  2. readPrec :: Read a => ReadPrec a

    base-compat Text.Read.Compat

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

  3. reads :: Read a => ReadS a

    base-compat Text.Read.Compat

    equivalent to readsPrec with a precedence of 0.

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

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

    base-compat Text.Read.Lex.Compat

    No documentation available.

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

    utility-ht Text.Read.HT

    No documentation available.

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

  8. readFile :: FilePath -> SourceT IO ByteString

    servant Servant.Types.SourceT

    Read file.

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

  9. readSoFar :: StreamFileStatus -> Int64

    http-conduit Network.HTTP.Client.Conduit

    No documentation available.

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

Page 107 of many | Previous | Next