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. readFileEncoding' :: TextEncoding -> FilePath -> IO String

    extra Extra

    A strict version of readFileEncoding, see readFile' for details.

  2. readFileUTF8 :: FilePath -> IO String

    extra Extra

    Like readFile, but with the encoding utf8.

  3. readFileUTF8' :: FilePath -> IO String

    extra Extra

    A strict version of readFileUTF8, see readFile' for details.

  4. readVar :: Var a -> IO a

    extra Extra

    Read the current value of the Var.

  5. readVersion :: Partial => String -> Version

    extra Extra

    Read a Version or throw an exception.

    \x -> readVersion (showVersion x) == x
    readVersion "hello" == undefined
    

  6. readFile' :: FilePath -> IO String

    extra System.IO.Extra

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

  7. readFileBinary :: FilePath -> IO String

    extra System.IO.Extra

    Like readFile, but for binary files.

  8. readFileBinary' :: FilePath -> IO String

    extra System.IO.Extra

    A strict version of readFileBinary, see readFile' for details.

  9. readFileEncoding :: TextEncoding -> FilePath -> IO String

    extra System.IO.Extra

    Like readFile, but setting an encoding.

  10. readFileEncoding' :: TextEncoding -> FilePath -> IO String

    extra System.IO.Extra

    A strict version of readFileEncoding, see readFile' for details.

Page 105 of many | Previous | Next