Hoogle Search

Within LTS Haskell 24.4 (ghc-9.10.2)

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

  1. readFileBS :: MonadIO m => FilePath -> m ByteString

    relude Relude.File

    Lifted version of readFile.

  2. readFileLBS :: MonadIO m => FilePath -> m LByteString

    relude Relude.File

    Lifted version of readFile.

  3. readFileLText :: MonadIO m => FilePath -> m LText

    relude Relude.File

    Warning: readFileLText depends on the system's locale settings and can throw unexpected exceptions.Use readFileLBS instead.

  4. readFileText :: MonadIO m => FilePath -> m Text

    relude Relude.File

    Warning: readFileText depends on the system's locale settings and can throw unexpected exceptions.Use readFileBS instead.

  5. readFile' :: MonadIO m => FilePath -> m String

    relude Relude.Lifted.File

    Warning: readFile' depends on the system's locale settings and can throw unexpected exceptions.Use readFileBS or readFileLBS instead.

  6. readFileDeserialise :: Serialise a => FilePath -> IO a

    serialise Codec.Serialise

    Read the specified file (internally, by reading a ByteString) and attempt to decode it into a Haskell value using deserialise (the type of which is determined by the choice of the result type). Throws: DeserialiseFailure if the file fails to deserialise properly.

  7. readFileDeserialise :: Serialise a => FilePath -> IO a

    serialise Codec.Serialise.IO

    Read the specified file (internally, by reading a ByteString) and attempt to decode it into a Haskell value using deserialise (the type of which is determined by the choice of the result type). Throws: DeserialiseFailure if the file fails to deserialise properly.

  8. readFileFromDirs :: PandocMonad m => [FilePath] -> FilePath -> m (Maybe Text)

    pandoc Text.Pandoc.Class

    Read file, checking in any number of directories.

  9. readFileLazy :: PandocMonad m => FilePath -> m ByteString

    pandoc Text.Pandoc.Class

    Read the lazy ByteString contents from a file path, raising an error on failure.

  10. readFileStrict :: PandocMonad m => FilePath -> m ByteString

    pandoc Text.Pandoc.Class

    Read the strict ByteString contents from a file path, raising an error on failure.

Page 11 of many | Previous | Next