Function rayon::iter::collect::unzip_into_vecs

source ยท
pub(super) fn unzip_into_vecs<I, A, B>(
    pi: I,
    left: &mut Vec<A>,
    right: &mut Vec<B>,
)
where I: IndexedParallelIterator<Item = (A, B)>, A: Send, B: Send,
Expand description

Unzips the results of the exact iterator into the specified vectors.

This is called by IndexedParallelIterator::unzip_into_vecs.