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. readWord8OffPtr :: Ptr Word8 -> Int -> IO Word8

    ghc-internal GHC.Internal.Storable

    No documentation available.

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

    ghc-internal GHC.Internal.Storable

    No documentation available.

  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 read lazily, on demand, as with getContents.

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

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

  6. readLn :: Read a => IO a

    ghc-internal GHC.Internal.System.IO

    The readLn function combines getLine and readIO.

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

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

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

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

    No documentation available.

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

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

    No documentation available.

Page 195 of many | Previous | Next