Module type Base__Monad_intf.S3
The same as S except the monad type has three arguments. The second and third are always just passed through.
include Syntax3 with type ('a, 'd, 'e) t := ('a, 'd, 'e) t
module Let_syntax : sig ... endmodule Monad_infix : Infix3 with type ('a, 'd, 'e) t := ('a, 'd, 'e) tval bind : ('a, 'd, 'e) t -> f:('a -> ('b, 'd, 'e) t) -> ('b, 'd, 'e) tval return : 'a -> ('a, _, _) tval map : ('a, 'd, 'e) t -> f:('a -> 'b) -> ('b, 'd, 'e) tval join : (('a, 'd, 'e) t, 'd, 'e) t -> ('a, 'd, 'e) tval ignore_m : (_, 'd, 'e) t -> (unit, 'd, 'e) tval all : ('a, 'd, 'e) t list -> ('a list, 'd, 'e) tval all_unit : (unit, 'd, 'e) t list -> (unit, 'd, 'e) t