Incr_memoize.Makemodule Incr : Incremental.Smodule Incr_with_store_params : sig ... endval with_params : 'a Incr.t -> 'a Store_params.t -> 'a Incr_with_store_params.tNote that despite its appearance, this is not a true monad and does not satisfy the monad signature for bind. This exists to make let%bind syntax convenient. Be careful if you are trying to use this in an unconventional way.
val bind : 'a Incr_with_store_params.t -> f:('a -> 'b Incr.t) -> 'b Incr.tval (>>=) : 'a Incr_with_store_params.t -> f:('a -> 'b Incr.t) -> 'b Incr.tmodule Let_syntax : sig ... endmodule Store_params = Store_paramsmodule Store = Store