loop 0.3.0

The package allows for processing iterators in parallel.
Documentation
# Loop [![Package][package-img]][package-url] [![Documentation][documentation-img]][documentation-url] [![Build][build-img]][build-url]

The package allows for processing iterators in parallel.

# Examples

Synchronously:

```rust
let double = |value| 2 * value;
let _ = r#loop::parallelize(0..10, double, None).collect::<Vec<_>>();
```

Asynchronously:

```rust
use futures::stream::StreamExt;

let double = |value| async move { 2 * value };
let _ = r#loop::parallelize(0..10, double).collect::<Vec<_>>().await;
```

## 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](LICENSE.md).

[build-img]: https://github.com/stainless-steel/loop/workflows/build/badge.svg
[build-url]: https://github.com/stainless-steel/loop/actions/workflows/build.yml
[documentation-img]: https://docs.rs/loop/badge.svg
[documentation-url]: https://docs.rs/loop
[package-img]: https://img.shields.io/crates/v/loop.svg
[package-url]: https://crates.io/crates/loop