Hoogle Search

Within LTS Haskell 24.33 (ghc-9.10.3)

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

  1. readCreateProcessWithExitCode :: CreateProcess -> ByteString -> IO (ExitCode, ByteString, ByteString)

    process-extras System.Process.ByteString.Lazy

    No documentation available.

  2. readProcessWithExitCode :: FilePath -> [String] -> ByteString -> IO (ExitCode, ByteString, ByteString)

    process-extras System.Process.ByteString.Lazy

    Specialized version for backwards compatibility.

  3. readCreateProcessWithExitCode :: CreateProcess -> Chars -> IO (ExitCode, Chars, Chars)

    process-extras System.Process.Chars

    No documentation available.

  4. readProcessWithExitCode :: FilePath -> [String] -> Chars -> IO (ExitCode, Chars, Chars)

    process-extras System.Process.Chars

    Specialized version for backwards compatibility.

  5. readChunks :: ListLikeProcessIO text char => Handle -> IO [text]

    process-extras System.Process.Common

    Read from a handle, returning a lazy list of the monoid a.

  6. readCreateProcessLazy :: (ProcessMaker maker, ProcessResult a b, ListLikeProcessIO a c) => maker -> a -> IO b

    process-extras System.Process.Common

    Like readCreateProcessStrict, but the output is read lazily.

  7. readCreateProcessStrict :: (ProcessMaker maker, ProcessResult text result, ListLikeProcessIO text char) => maker -> text -> IO result

    process-extras System.Process.Common

    No documentation available.

  8. readCreateProcessWithExitCode :: (ProcessMaker maker, ListLikeProcessIO text char) => maker -> text -> IO (ExitCode, text, text)

    process-extras System.Process.Common

    No documentation available.

  9. readProcessWithExitCode :: ListLikeProcessIO text char => FilePath -> [String] -> text -> IO (ExitCode, text, text)

    process-extras System.Process.Common

    Like readProcessWithExitCode, but with generalized input and output type. Aside from the usual text-like types, the output can be a list of Chunk a. This lets you process the chunks received from stdout and stderr lazil, in the order they are received, as well as the exit code. Utilities to handle Chunks are provided in System.Process.ListLike.

  10. readCreateProcess :: (ProcessMaker maker, ProcessResult text result, ListLikeProcessIO text char) => maker -> text -> IO result

    process-extras System.Process.ListLike

    No documentation available.

Page 150 of many | Previous | Next