itertools
itertools copied to clipboard
Deprecate `multiunzip` after switching to Rust 1.85
Rust 1.85 implements FromIterator for (A_1, ..., A_n) when each A_i is Default + Extend (and n is at most 12) so iter.multiunzip() can be replaced by iter.collect().
also deprecate Itertools::unzip, it's for 2-tuples, replaced by .collect() too.
There's no Itertools::unzip, maybe you're thinking of Iterator::unzip?
Oh you're right, thanks.