Shexp_process.Let_syntaxSourceOpen this module when using ppx_let
Open this module when using ppx_let
val (>>=) :
'a Shexp_process__.Process.t ->
('a -> 'b Shexp_process__.Process.t) ->
'b Shexp_process__.Process.tSame as bind
Same as map
val (>>) :
unit Shexp_process__.Process.t ->
'a Shexp_process__.Process.t ->
'a Shexp_process__.Process.ta >> b is the same as a >>= fun () -> b
val (|-) :
unit Shexp_process__.Process.t ->
'a Shexp_process__.Process.t ->
'a Shexp_process__.Process.tSame as pipe
val (|+) :
'a Shexp_process__.Process.t ->
'b Shexp_process__.Process.t ->
('a * 'b) Shexp_process__.Process.tSame as pipe_both