Module Biocaml_internal_utils.Result.List (.ml)

module List: 
sig
val mapi : 'a list -> f:(int -> 'a -> ('b, 'e) t) -> ('b list, 'e) t
Map the function f over the list, stopping on the first error encountered.
val map : 'a list -> f:('a -> ('b, 'err) t) -> ('b list, 'err) t
end