1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//! Processing iterators in parallel.
//!
//! # Examples
//!
//! Synchronously:
//!
//! ```
//! fn main() {
//! use r#loop::parallelize;
//!
//! let double = |value| 2 * value;
//! let _ = parallelize(0..10, double, None).collect::<Vec<_>>();
//! }
//!```
//!
//! Asynchronously:
//!
//!```
//! # #[cfg(feature = "asynchronous")]
//! #[tokio::main]
//! async fn main() {
//! use futures::stream::StreamExt;
//! use r#loop::asynchronous::parallelize;
//!
//! let double = |value| async move { 2 * value };
//! let _ = parallelize(0..10, double, None).collect::<Vec<_>>().await;
//! }
//! # #[cfg(not(feature = "asynchronous"))]
//! # fn main() {}
//! ```
pub use parallelize;