package travesty
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=49d43ea0e9cef32d493fcc1561fc7480c55d9a2490700e487f4d5c3aff562d61
sha512=1cd77071adfb4583d0fcd27469b97bc64b7278761949aaaf415768aec14f6a1243e14575155c75033a5141a0320b4f56687381dc2bc56432a5ea63ea8613d968
doc/travesty.containers/Travesty_containers/Singleton/On_monad/index.html
Module Singleton.On_monad
On_monad implements applicative folding and mapping operators for a given monad M, including arity-1 specific operators.
Parameters
module M : Base.Monad.SSignature
include Travesty.Traversable_types.Generic_on_monad
with type 'a t := 'a t
and type 'a elt := 'a
with module M := M
All applicative operators are available through lowering the monad to an applicative functor.
include Travesty.Traversable_types.Generic_on_applicative
with module M := Travesty.Monad_exts.App(M)
with type 'a t := 'a t
with type 'a elt := 'a
include Travesty.Traversable_types.Basic_generic_on_applicative
with module M := Travesty.Monad_exts.App(M)
with type 'a t := 'a t
with type 'a elt := 'a
Generic 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 Travesty.Generic_types.Generic
with type 'a t := 'a t
with type 'a elt := 'a
val map_m :
'a t ->
f:('a -> 'b Travesty.Monad_exts.App(M).t) ->
'b t Travesty.Monad_exts.App(M).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.