How do I get a slice of a Vec in Rust?
The documentation for Vec covers this in the section titled “slicing”. You can create a slice of a Vec or array by indexing it with a Range (or RangeInclusive, RangeFrom, RangeTo, RangeToInclusive, or RangeFull), for example: fn main() { let a = vec![1, 2, 3, 4, 5]; // With a start and an end println!(“{:?}”, … Read more