Unix like find.
find
create ?options dir create a Find.t based in dir
create ?options dir
next t return the next file from the collection of valid files in t or None if no more files remain
next t
close t drops all the resources associated with t. It is a mistake to attempt to use t again. Any Find.t will be automatically closed after the last file is read by any means.
close t
iter t ~f calls f on every file in t
iter t ~f
fold t ~init ~f folds f over the files in t
fold t ~init ~f
to_list t returns all of the remaining files in t as a list in the order they would have been returned by subsequent calls to next
to_list t
find_all ?options dir short for to_list (create ?options dir)
find_all ?options dir