pub fn vec_transpose<T: Clone>(matrix: &[Vec<T>]) -> Vec<Vec<T>>
Transpose a Vec<Vec<T>> (rows ↔ columns).
Vec<Vec<T>>
The input must be rectangular (all inner vecs same length).