Module Generic.Proc
module Val : sig ... endThis module is intended to be used with a yet-unfinished PPX. I recommend avoiding this module until let%sub is finished.
module Computation : sig ... endval sub : ('a, 'incr, 'event) Computation.t -> f:('a Val.t -> ('b, 'incr, 'event) Computation.t) -> ('b, 'incr, 'event) Computation.tval return : 'a Val.t -> ('a, _, _) Computation.tval apply : ('a, 'b, 'incr, 'event) t -> 'a Val.t -> ('b, 'incr, 'event) Computation.tval apply_unit : (unit, 'b, 'incr, 'event) t -> ('b, 'incr, 'event) Computation.tval proc : ('a Val.t -> ('b, 'incr, 'event) Computation.t) -> ('a, 'b, 'incr, 'event) tval if_ : bool Val.t -> then_:('a, 'incr, 'event) Computation.t -> else_:('a, 'incr, 'event) Computation.t -> ('a, 'incr, 'event) Computation.tval enum : (module Enum with type t = 'a) -> match_:'a Val.t -> with_:('a -> ('b, 'incr, 'event) Computation.t) -> ('b, 'incr, 'event) Computation.t