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.

  1. reads :: Read a => ReadS a

    rebase Rebase.Prelude

    equivalent to readsPrec with a precedence of 0.

  2. readsPrec :: Read a => Int -> ReadS a

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

  3. readerS :: forall (m :: Type -> Type) cl a r b . Monad m => ClSF m cl (a, r) b -> ClSF (ReaderT r m) cl a b

    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.

  4. readBinary :: FilePath -> Sh ByteString

    shelly Shelly

    Wraps readFile.

  5. readfile :: FilePath -> Sh Text

    shelly Shelly

    No documentation available.

  6. readBinary :: MonadSh m => FilePath -> m ByteString

    shelly Shelly.Lifted

    No documentation available.

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

    shelly Shelly.Lifted

    No documentation available.

  8. readBinary :: FilePath -> Sh ByteString

    shelly Shelly.Pipe

    see readBinary

  9. readfile :: FilePath -> Sh Text

    shelly Shelly.Pipe

    see readFile

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

Page 229 of many | Previous | Next