Hoogle Search

Within LTS Haskell 24.32 (ghc-9.10.3)

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

  1. readProcessInterleaved_ :: MonadIO m => ProcessConfig stdin stdoutIgnored stderrIgnored -> m ByteString

    typed-process System.Process.Typed

    Same as readProcessInterleaved, but instead of returning the ExitCode, checks it with checkExitCode. Exceptions thrown by this function will include stdout.

  2. readProcessStderr :: MonadIO m => ProcessConfig stdin stdout stderrIgnored -> m (ExitCode, ByteString)

    typed-process System.Process.Typed

    Same as readProcess, but only read the stderr of the process. Original settings for stdout remain.

  3. readProcessStderr_ :: MonadIO m => ProcessConfig stdin stdout stderrIgnored -> m ByteString

    typed-process System.Process.Typed

    Same as readProcessStderr, but instead of returning the ExitCode, checks it with checkExitCode. Exceptions thrown by this function will include stderr.

  4. readProcessStdout :: MonadIO m => ProcessConfig stdin stdoutIgnored stderr -> m (ExitCode, ByteString)

    typed-process System.Process.Typed

    Same as readProcess, but only read the stdout of the process. Original settings for stderr remain.

  5. readProcessStdout_ :: MonadIO m => ProcessConfig stdin stdoutIgnored stderr -> m ByteString

    typed-process System.Process.Typed

    Same as readProcessStdout, but instead of returning the ExitCode, checks it with checkExitCode. Exceptions thrown by this function will include stdout.

  6. readProcess_ :: MonadIO m => ProcessConfig stdin stdoutIgnored stderrIgnored -> m (ByteString, ByteString)

    typed-process System.Process.Typed

    Same as readProcess, but instead of returning the ExitCode, checks it with checkExitCode. Exceptions thrown by this function will include stdout and stderr.

  7. readMatrix :: Storable t => STMatrix s t -> Int -> Int -> ST s t

    hmatrix Numeric.LinearAlgebra.Devel

    No documentation available.

  8. readVector :: Storable t => STVector s t -> Int -> ST s t

    hmatrix Numeric.LinearAlgebra.Devel

    No documentation available.

  9. readFile :: FilePath -> IO String

    strict System.IO.Strict

    The readFile function reads a file and returns the contents of the file as a string. The file is read strictly, as with getContents.

  10. readExtensions :: String -> Maybe (Maybe Language, [Extension])

    haskell-src-exts Language.Haskell.Exts

    Gather the extensions declared in LANGUAGE pragmas at the top of the file. Returns Nothing if the parse of the pragmas fails.

Page 120 of many | Previous | Next