include module type of struct include Ops_piping end
val (|&>) : 'x Stdlib.Seq.t -> ('x -> 'y) -> 'y Stdlib.Seq.tval (|&>>) : 'x Stdlib.Seq.t -> ('x -> 'y Stdlib.Seq.t) -> 'y Stdlib.Seq.tval (|+&>) : 'x Stdlib.Seq.t -> ('x -> 'y) -> ('x * 'y) Stdlib.Seq.tval (|!>) : 'x Stdlib.Seq.t -> ('x -> unit) -> unitval (|-!>) : 'x Stdlib.Seq.t -> ('x -> unit) -> 'x Stdlib.Seq.tval (|@>) : 'x Stdlib.Seq.t -> ('acc * (('acc * 'x) -> 'acc)) -> 'accval (|?>) : 'x Stdlib.Seq.t -> ('x -> bool) -> 'x Stdlib.Seq.tval (|&?>) : 'x Stdlib.Seq.t -> ('x -> 'y option) -> 'y Stdlib.Seq.tval (|+&?>) : 'x Stdlib.Seq.t -> ('x -> 'y option) -> ('x * 'y) Stdlib.Seq.tinclude module type of struct include Ops_monad end
val returning : 'a -> 'b -> 'a Seq0.t