The package allows for scanning directories in parallel.
```rust use std::path::Path;
let results: Vec<_> = folder::scan( Path::new("src"), |path| true, |path, | Ok(path.exists()), (), 1, ) .collect(); asserteq!(format!("{results:?}"), r#"[("src/lib.rs", Ok(true))]"#); ```
Your contribution is highly appreciated. Do not hesitate to open an issue or a pull request. Note that any contribution submitted for inclusion in the project will be licensed according to the terms given in LICENSE.md.