DigestifSourceA general (inner) iterator. It applies the provided function to a collection of elements. For instance:
let iter_k : 'a -> 'a iter = fun x f -> f xlet iter_pair : 'a * 'a -> 'a iter = fun (x, y) -> f x; f ylet iter_list : 'a list -> 'a iter = fun l f -> List.iter f l