Go to file
Stjepan Glavina 0db060cfd0 Initial commit 2020-05-27 00:05:45 +02:00
.github Initial commit 2020-05-27 00:05:45 +02:00
src Initial commit 2020-05-27 00:05:45 +02:00
tests Initial commit 2020-05-27 00:05:45 +02:00
.gitignore Initial commit 2020-05-27 00:05:45 +02:00
CHANGELOG.md Initial commit 2020-05-27 00:05:45 +02:00
Cargo.toml Initial commit 2020-05-27 00:05:45 +02:00
LICENSE-APACHE Initial commit 2020-05-27 00:05:45 +02:00
LICENSE-MIT Initial commit 2020-05-27 00:05:45 +02:00
README.md Initial commit 2020-05-27 00:05:45 +02:00

README.md

easy-parallel

Build License Cargo Documentation

Easy parallel closures.

This is a simple primitive for spawning threads in bulk and waiting for them to complete. Threads are allowed to borrow local variables from the main thread.

Examples

Run two threads that increment a number:

use easy_parallel::Parallel;
use std::sync::Mutex;

let mut m = Mutex::new(0);

Parallel::new()
    .add(|| *m.lock().unwrap() += 1)
    .add(|| *m.lock().unwrap() += 1)
    .run();

assert_eq!(*m.get_mut().unwrap(), 2);

Print each number in a vector on a different thread:

use easy_parallel::Parallel;

let mut v = vec![10, 20, 30];

Parallel::new()
    .each(0..v.len(), |i| println!("{}", v[i]))
    .run();

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.