package travesty
Monadically traversable containers
Install
dune-project
Dependency
Authors
Maintainers
Sources
travesty-v0.6.1.tbz
sha256=9c7b3803620c54496a35983285242ec8e06a5efb1baa3523384d7184b7e9fab7
sha512=991646fe5bb899971d3f8c00432d4df6c45dbd81cbff885b28d30d9c228e5df61f1e8d61aadc164ec35c448093abb34fd7a7d571e1cdf4d3af25579bf400f167
doc/travesty.base_exts/Travesty_base_exts/Option/On_monad/index.html
Module Option.On_monad
On_monad
implements monadic folding and mapping operators for a given monad M
, including arity-1 specific operators.
Parameters
module M : Base.Monad.S
Signature
include Travesty.Traversable_types.Generic_on_monad
with type 'a t := 'a t
and type 'a elt := 'a
with module M := M
include Travesty.Traversable_types.Basic_generic_on_monad
with type 'a t := 'a t
with type 'a elt := 'a
with module M := M
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
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
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.
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page