Registry / async / easy-parallel

easy-parallel

JSON →
library3.3.1rscratesunverified

Run closures in parallel using a simple thread pool.

# Cargo.toml [dependencies] easy-parallel = "3.3.1"
INSTALL
IMPORT
SIG · EASY-PARALLEL
E
easy-parallel
asyncrustv3.3.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Parallel
use easy_parallel::Parallel;

Run a closure over a range in parallel and collect results.

use easy_parallel::Parallel; fn main() { let results = Parallel::new() .each(0..10, |i| i * 2) .run(); println!("{:?}", results); }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
3.3.1latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
26 hits · last 30 days
node
24
Resources
easy-parallel — cargo add easy-parallel · libregistry