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
/// Dispatch work to either a sequential iterator or parallel execution path
/// with the requested thread count.
///
/// # Example
///
/// ```ignore
/// let threads = Some(2);
/// let data: Vec<usize> = par!(
/// threads,
/// seq_exp: (0..10).map(|i| i * 2).collect(),
/// par_exp: (0..10).into_par_iter().map(|i| i * 2).collect()
/// );
/// ```