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.
macro_rules! into_par_vec {
($t:ty => $iter:ident<$($i:tt),*>, impl $($args:tt)*) => { ... };
}
Convert an iterable collection into a parallel iterator by first
collecting into a temporary Vec
, then iterating that.