Process.Infix
val (>>=) : 'a t -> ('a -> 'b t) -> 'b t
Same as bind
bind
val (>>|) : 'a t -> ('a -> 'b) -> 'b t
Same as map
map
val (>>) : unit t -> 'a t -> 'a t
a >> b is the same as a >>= fun () -> b
a >> b
a >>= fun () -> b
val (|-) : unit t -> 'a t -> 'a t
Same as pipe
pipe
val (|+) : 'a t -> 'b t -> ('a * 'b) t
Same as pipe_both
pipe_both