Const.On_monadSourceOn_monad implements traversal operators for a given monad M. Compared to On(Monad_exts.App(M)), this adds various derived operators available only for monads.
module M : Base.Monad.SAll applicative operators are available through lowering the monad to an applicative functor.
include Traversable_types.Generic_on_applicative
with module M := Monad_exts.App(M)
with type 'a t := t
with type 'a elt := Elt.tinclude Traversable_types.Basic_generic_on_applicative
with module M := Monad_exts.App(M)
with type 'a t := t
with type 'a elt := Elt.tGeneric refers to the container type as 'a t, and the element type as 'a elt; substitute t/elt (arity-0) or 'a t/'a (arity-1) accordingly below.
include Generic_types.Generic with type 'a t := t with type 'a elt := Elt.tmap_m c ~f maps f over every t in c, threading through an applicative functor.
Example:
(* Travesty_base_exts.List adds applicative traversals to a list;
With_errors (in S1_container) implements them on the On_error
applicative functor. *)
let f x =
Or_error.(if 0 < x then error_string "negative!" else ok x)
in
List.With_errors.map_m integers ~ffold_map_m c ~f ~init folds f applicatively over every t in c, threading through an accumulator with initial value init.
fold_m x ~init ~f folds the applicative computation f over x, starting with initial value init, and returning the final value inside the applicative effect.
iter_m x ~f iterates the computation f over x, returning the final applicative effect.