Safe Haskell | None |
---|---|
Language | Haskell2010 |
Documentation
data Process m a where Source #
Read_ :: ProcessConfig stdin stdout stderr -> Process m (ByteString, ByteString) | |
ReadInterleaved_ :: ProcessConfig stdin stdout stderr -> Process m ByteString | |
ReadInterleaved :: ProcessConfig stdin stdout stderr -> Process m (ExitCode, ByteString) |
readInterleaved :: forall r stdin stdout stderr. MemberWithError Process r => ProcessConfig stdin stdout stderr -> Sem r (ExitCode, ByteString) Source #
readInterleaved_ :: forall r stdin stdout stderr. MemberWithError Process r => ProcessConfig stdin stdout stderr -> Sem r ByteString Source #
read_ :: forall r stdin stdout stderr. MemberWithError Process r => ProcessConfig stdin stdout stderr -> Sem r (ByteString, ByteString) Source #