Base.Applicative
Sourcemodule Make_let_syntax
(X : sig ... end)
(Intf : sig ... end)
(Impl : Intf.S) :
Let_syntax with type 'a t := 'a X.t with module Open_on_rhs_intf := Intf
module Make_let_syntax2
(X : sig ... end)
(Intf : sig ... end)
(Impl : Intf.S) :
Let_syntax2
with type ('a, 'e) t := ('a, 'e) X.t
with module Open_on_rhs_intf := Intf
module Make_let_syntax3
(X : sig ... end)
(Intf : sig ... end)
(Impl : Intf.S) :
Let_syntax3
with type ('a, 'd, 'e) t := ('a, 'd, 'e) X.t
with module Open_on_rhs_intf := Intf
module Make3_using_map2
(X : Basic3_using_map2) :
S3 with type ('a, 'd, 'e) t := ('a, 'd, 'e) X.t
module Make2_using_map2_local
(X : Basic2_using_map2_local) :
S2_local with type ('a, 'e) t := ('a, 'e) X.t
The following functors give a sense of what Applicatives one can define.
Of these, Of_monad
is likely the most useful. The others are mostly didactic.