The title says it. What I was trying to do when I discovered this was print a zip of a range and an ndarray. Like so: ``` let foo = ndarray::Array1::<f64>::zeros(100); println!("{:?}", std::iter::zip(0..foo.len(), &foo); ```