-
travesty
-
-
travesty.containers
-
-
travesty.core_kernel_exts
Library
Module
Module type
Parameter
Class
Class type
Generic_on_monad
extends Generic
to contain various derived operators; we use it to derive the signatures of the various On_monad
modules.
- For arity-0 types,
'a t
becomest
and'a elt
becomeselt
. - For arity-1 types,
'a t
becomes'a t
and'a elt
becomes'a
.
include Basic_generic_on_monad
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 Types_intf.Generic
module M : Base.Monad.S
M
is the monad over which we're fold-mapping.
map_m c ~f
maps f
over every t
in c
, threading through monadic state.
Example:
(* Travesty_base_exts.List adds monadic traversals to a list;
With_errors (in S1_container) implements them on the On_error
monad. *)
let f x =
Or_error.(if 0 < x then error_string "negative!" else ok x)
in
List.With_errors.map_m integers ~f
val fold_map_m :
'a t ->
f:('acc -> 'a elt -> ('acc * 'b elt) M.t) ->
init:'acc ->
('acc * 'b t) M.t
fold_map_m c ~f ~init
folds f
monadically over every t
in c
, threading through an accumulator with initial value init
.
fold_m x ~init ~f
folds the monadic computation f
over x
, starting with initial value init
, and returning the final value inside the monadic effect.
iter_m x ~f
iterates the monadic computation f
over x
, returning the final monadic effect.