Macro rayon::collections::into_par_vec
source ยท macro_rules! into_par_vec { ($t:ty => $iter:ident<$($i:tt),*>, impl $($args:tt)*) => { ... }; }
Expand description
Convert an iterable collection into a parallel iterator by first
collecting into a temporary Vec
, then iterating that.