Module Foldable.List

type 'a t = 'a list
val fold : 'a t -> init:'b -> f:('b -> 'a -> 'b) -> 'b

Fold over the elements of the data structure.