C | |
| close [Async_find] | close t drops all the resources associated with t.
|
| create [Async_find] | create ?options dir create a Find.t based in dir
|
D | |
| default [Async_find.Options] | |
F | |
| find_all [Async_find] | find_all ?options dir short for to_list (create ?options dir)
|
| fold [Async_find] | fold t ~init ~f folds f over the files in t
|
I | |
| ignore_errors [Async_find.Options] | |
| iter [Async_find] | iter t ~f calls f on every file in t
|
N | |
| next [Async_find] | next t return the next file from the collection of valid files in t or None
if no more files remain
|
T | |
| to_list [Async_find] | 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
|