pub fn vec_split_at<T: Clone>(v: &[T], index: usize) -> (Vec<T>, Vec<T>)
Split a vector at index, returning (left, right).
index
(left, right)