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.
readfile :: FilePath -> Sh Textshelly Shelly No documentation available.
readfile :: MonadSh m => FilePath -> m Textshelly Shelly.Lifted No documentation available.
readfile :: FilePath -> Sh Textshelly Shelly.Pipe see readFile
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.
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.
readFile :: FilePath -> IO ByteStringsystem-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.
readFile :: FilePath -> IO Stringmixed-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.
readFile :: FilePath -> IO StringLambdaHack 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.
readFile :: FilePath -> IO Stringcabal-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.
readFile :: FilePath -> IO Textdebian Debian.UTF8 No documentation available.