Hoogle Search

Within LTS Haskell 24.50 (ghc-9.10.3)

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

  1. readWordOffPtr :: Ptr Word -> Int -> IO Word

    ghc-internal GHC.Internal.Storable

    No documentation available.

  2. readFile :: FilePath -> IO String

    ghc-internal GHC.Internal.System.IO

    The readFile function reads a file and returns the contents of the file as a string. The file is read lazily, on demand, as with getContents.

  3. readFile' :: FilePath -> IO String

    ghc-internal GHC.Internal.System.IO

    The readFile' function reads a file and returns the contents of the file as a string. The file is fully read before being returned, as with getContents'.

  4. readIO :: Read a => String -> IO a

    ghc-internal GHC.Internal.System.IO

    The readIO function is similar to read except that it signals parse failure to the IO monad instead of terminating the program.

  5. readLn :: Read a => IO a

    ghc-internal GHC.Internal.System.IO

    The readLn function combines getLine and readIO.

  6. readP_to_S :: ReadP a -> ReadS a

    ghc-internal GHC.Internal.Text.ParserCombinators.ReadP

    Converts a parser into a Haskell ReadS-style function. This is the main way in which you can "run" a ReadP parser: the expanded type is readP_to_S :: ReadP a -> String -> [(a,String)]

  7. readS_to_P :: ReadS a -> ReadP a

    ghc-internal GHC.Internal.Text.ParserCombinators.ReadP

    Converts a Haskell ReadS-style function into a parser. Warning: This introduces local backtracking in the resulting parser, and therefore a possible inefficiency.

  8. readP_to_Prec :: (Int -> ReadP a) -> ReadPrec a

    ghc-internal GHC.Internal.Text.ParserCombinators.ReadPrec

    No documentation available.

  9. readPrec_to_P :: ReadPrec a -> Int -> ReadP a

    ghc-internal GHC.Internal.Text.ParserCombinators.ReadPrec

    No documentation available.

  10. readPrec_to_S :: ReadPrec a -> Int -> ReadS a

    ghc-internal GHC.Internal.Text.ParserCombinators.ReadPrec

    No documentation available.

Page 196 of many | Previous | Next