Contact: aviboots(AT)netvision.net.il
40,757 questions
53,125 answers
573 users
fn main() { let mut vec = vec![1, 2, 3, 4, 5]; let index = 1; vec.remove(index); println!("{:?}", vec); } /* run: [1, 3, 4, 5] */