Is there a more direct and readable way to accomplish the following:
fn main() {
let a = [1, 2, 3];
let b = [4, 5, 6];
let c = [7, 8, 9];
let iter = a.iter()
.zip(b.iter())
.zip(c.iter())
.map(|((x, y), z)| (x, y, z));
}
That is, how can I build an iterator from n iterables which yields n-tuples?