Function rayon::iter::unzip::unzip_indexed
source ยท pub(super) fn unzip_indexed<I, A, B, CA, CB>(
pi: I,
left: CA,
right: CB,
) -> (CA::Result, CB::Result)
Expand description
Unzips an IndexedParallelIterator
into two arbitrary Consumer
s.
This is called by super::collect::unzip_into_vecs
.