Foldable.Core_via_fold_mapmodule Req : Preface_specs.Foldable.WITH_FOLD_MAPtype 'a t = 'a Req.tThe type held by Foldable.
val fold_map' : 'a -> ('a -> 'a -> 'a) -> ('b -> 'a) -> 'b t -> 'aMap each element of the Foldable to a Monoid an combine the result.
val fold_right : ('a -> 'b -> 'b) -> 'a t -> 'b -> 'bSame of List.fold_right for Foldable.