Hoogle Search

Within LTS Haskell 24.34 (ghc-9.10.3)

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

  1. setCloseFds :: Bool -> ProcessConfig stdin stdout stderr -> ProcessConfig stdin stdout stderr

    typed-process System.Process.Typed

    Should we close all file descriptors besides stdin, stdout, and stderr? See close_fds for more information. Default: False

  2. setCreateGroup :: Bool -> ProcessConfig stdin stdout stderr -> ProcessConfig stdin stdout stderr

    typed-process System.Process.Typed

    Should we create a new process group? Default: False

  3. setCreateNewConsole :: Bool -> ProcessConfig stdin stdout stderr -> ProcessConfig stdin stdout stderr

    typed-process System.Process.Typed

    Create new console on Windows, see create_new_console. Default: False

  4. setDelegateCtlc :: Bool -> ProcessConfig stdin stdout stderr -> ProcessConfig stdin stdout stderr

    typed-process System.Process.Typed

    Delegate handling of Ctrl-C to the child. For more information, see delegate_ctlc. Default: False

  5. setDetachConsole :: Bool -> ProcessConfig stdin stdout stderr -> ProcessConfig stdin stdout stderr

    typed-process System.Process.Typed

    Detach console on Windows, see detach_console. Default: False

  6. setEnv :: [(String, String)] -> ProcessConfig stdin stdout stderr -> ProcessConfig stdin stdout stderr

    typed-process System.Process.Typed

    Set the environment variables of the child process. Default: current process's environment.

  7. setEnvInherit :: ProcessConfig stdin stdout stderr -> ProcessConfig stdin stdout stderr

    typed-process System.Process.Typed

    Inherit the environment variables from the parent process.

  8. setNewSession :: Bool -> ProcessConfig stdin stdout stderr -> ProcessConfig stdin stdout stderr

    typed-process System.Process.Typed

    Set a new session with the POSIX setsid syscall, does nothing on non-POSIX. See new_session. Default: False

  9. setStderr :: StreamSpec 'STOutput stderr -> ProcessConfig stdin stdout stderr0 -> ProcessConfig stdin stdout stderr

    typed-process System.Process.Typed

    Set the child's standard error stream to the given StreamSpec. Default: inherit

  10. setStdin :: StreamSpec 'STInput stdin -> ProcessConfig stdin0 stdout stderr -> ProcessConfig stdin stdout stderr

    typed-process System.Process.Typed

    Set the child's standard input stream to the given StreamSpec. Default: inherit

Page 225 of many | Previous | Next