Function rayon::iter::collect::collect_into_vec

source ยท
pub(super) fn collect_into_vec<I, T>(pi: I, v: &mut Vec<T>)
where I: IndexedParallelIterator<Item = T>, T: Send,
Expand description

Collects the results of the exact iterator into the specified vector.

This is called by IndexedParallelIterator::collect_into_vec.