macro_rules! extend {
($self:ident, $par_iter:ident) => { ... };
($self:ident <- $vecs:expr) => { ... };
}
Expand description
Performs a generic par_extend
by collecting to a LinkedList<Vec<_>>
in
parallel, then extending the collection sequentially.