最佳答案
我无法在 Vec<T>
的文档中找到如何从指定范围检索切片的方法。
在标准库中是否有类似的东西:
let a = vec![1, 2, 3, 4];
let suba = a.subvector(0, 2); // Contains [1, 2];