Module type Base__Monad_intf.S2
The same as S except the monad type has two arguments. The second is always just passed through.
include Syntax2 with type ('a, 'e) t := ('a, 'e) t
module Let_syntax : sig ... endmodule Monad_infix : Infix2 with type ('a, 'e) t := ('a, 'e) tval bind : ('a, 'e) t -> f:('a -> ('b, 'e) t) -> ('b, 'e) tval return : 'a -> ('a, _) tval map : ('a, 'e) t -> f:('a -> 'b) -> ('b, 'e) tval join : (('a, 'e) t, 'e) t -> ('a, 'e) tval ignore_m : (_, 'e) t -> (unit, 'e) tval all : ('a, 'e) t list -> ('a list, 'e) tval all_unit : (unit, 'e) t list -> (unit, 'e) t