Folder Package Documentation Build

The package allows for scanning directories in parallel.

Example

```rust use std::path::Path;

let results = folder::scan( Path::new("src"), |path| true, |path, | Ok(path.exists()), (), 1, ); asserteq!( format!("{results:?}"), r#"[("src/lib.rs", Ok(true))]"#, ); ```

Contribution

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.