[][src]Macro rayon_macro::parallel

parallel!() { /* proc-macro */ }

Transform a traditional for loop into a parallel for_each

This example is not tested
parallel!(for item in expr { /* body */ })

becomes roughly:

This example is not tested
expr.into_par_iter().for_each(|item| { /* body */ });