module Generic_util_iter: sig .. end
sig
end
val for_all_in : int -> int -> (int -> bool) -> bool
int -> int -> (int -> bool) -> bool
for_all_in a b f
fun a b f -> List.for_all f (from_to a b)
(see Generic_util_list.from_to)
Generic_util_list.from_to