Hoogle Search

Within LTS Haskell 24.2 (ghc-9.10.2)

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

  1. readfile :: FilePath -> Sh Text

    shelly Shelly

    No documentation available.

  2. readfile :: MonadSh m => FilePath -> m Text

    shelly Shelly.Lifted

    No documentation available.

  3. readfile :: FilePath -> Sh Text

    shelly Shelly.Pipe

    see readFile

  4. readFile :: forall (m :: Type -> Type) . MonadResource m => FilePath -> ByteStream m ()

    streaming-bytestring Streaming.ByteString

    Read an entire file into a chunked ByteStream IO (). The handle will be held open until EOF is encountered. The block governed by runResourceT will end with the closing of any handles opened.

    >>> :! cat hello.txt
    Hello world.
    Goodbye world.
    
    >>> runResourceT $ Q.stdout $ Q.readFile "hello.txt"
    Hello world.
    Goodbye world.
    

  5. readFile :: forall (m :: Type -> Type) . MonadResource m => FilePath -> ByteStream m ()

    streaming-bytestring Streaming.ByteString.Char8

    Read an entire file into a chunked ByteStream IO (). The handle will be held open until EOF is encountered. The block governed by runResourceT will end with the closing of any handles opened.

    >>> :! cat hello.txt
    Hello world.
    Goodbye world.
    
    >>> runResourceT $ Q.stdout $ Q.readFile "hello.txt"
    Hello world.
    Goodbye world.
    

  6. readFile :: FilePath -> IO ByteString

    system-fileio Filesystem

    Read in the entire content of a binary file. This computation throws IOError on failure. See “Classifying I/O errors” in the System.IO.Error documentation for information on why the failure occured.

  7. readFile :: FilePath -> IO String

    mixed-types-num Numeric.MixedTypes.PreludeHiding

    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.

  8. readFile :: FilePath -> IO String

    LambdaHack Game.LambdaHack.Common.File

    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.

  9. readFile :: FilePath -> IO String

    cabal-install-solver Distribution.Solver.Compat.Prelude

    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.

  10. readFile :: FilePath -> IO Text

    debian Debian.UTF8

    No documentation available.

Page 5 of many | Previous | Next