5
在迭代元組數組時,Rust爲什麼不解構元組?例如:爲什麼迭代元組數組時,元組不能解構?
let x: &[(usize, usize)] = &[...];
for (a,b) in x.iter() {
...
}
導致錯誤:
error: type mismatch resolving `<core::slice::Iter<'_, (usize, usize)> as core::iter::Iterator>::Item == (_, _)`:
expected &-ptr,
found tuple [E0271]