Parallel Collections
← Back to Data Parallelism
Collection APIs that automatically parallelize operations across available cores. They provide the same functional API as sequential collections (map, filter, reduce) but execute operations in parallel, making parallelism easy to adopt without manual thread management.
Key Properties
Related
- Java parallel streams, Rust rayon, Python multiprocessing