We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7310265 commit 6a81e09Copy full SHA for 6a81e09
examples/bench_parallelization.rs
@@ -74,7 +74,7 @@ fn main() {
74
Box::new(move || {
75
let list: DoublyList<_> = (0..args.len as usize).collect();
76
77
- list.par_x() // replace iter_ (into_iter_x) with par_x (into_par_x) to parallelize !
+ list.par_x() // replace iter_x (into_iter_x) with par_x (into_par_x) to parallelize !
78
.filter(|x| *x % 3 != 0)
79
.map(|x| x + fibonacci(x % 1000))
80
.filter(|x| x % 2 == 0)
0 commit comments