Hoogle Search
Within LTS Haskell 24.51 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
rebase Rebase.Prelude equivalent to readsPrec with a precedence of 0.
readsPrec :: Read a => Int -> ReadS arebase Rebase.Prelude attempts to parse a value from the front of the string, returning a list of (parsed value, remaining string) pairs. If there is no successful parse, the returned list is empty. Derived instances of Read and Show satisfy the following:
That is, readsPrec parses the string produced by showsPrec, and delivers the value that showsPrec started with.-
rhine FRP.Rhine.ClSF.Reader Create ("wrap") a ReaderT layer in the monad stack of a behaviour. Each tick, the ReaderT side effect is performed by passing the original behaviour the extra r input.
readBinary :: FilePath -> Sh ByteStringshelly Shelly Wraps readFile.
readfile :: FilePath -> Sh Textshelly Shelly No documentation available.
readBinary :: MonadSh m => FilePath -> m ByteStringshelly Shelly.Lifted No documentation available.
readfile :: MonadSh m => FilePath -> m Textshelly Shelly.Lifted No documentation available.
readBinary :: FilePath -> Sh ByteStringshelly Shelly.Pipe see readBinary
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.