Rust iter and into iter:修订历史

差异选择:选中要对比的修订的单选按钮,然后按Enter键或下面的按钮。
说明:(当前)=与最后修订的差异,(之前)=与上个修订的差异,=小编辑。

2024年6月26日 (星期三)

  • 当前之前 10:042024年6月26日 (三) 10:04Riguz 留言 贡献 731字节 −2 无编辑摘要
  • 当前之前 10:042024年6月26日 (三) 10:04Riguz 留言 贡献 733字节 +733 创建页面,内容为“* iter() iterates over the items by reference * iter_mut() iterates over the items, giving a mutable reference to each item * into_iter() iterates over the items, moving them into the new scope So for x in my_vec { ... } is essentially equivalent to my_vec.into_iter().for_each(|x| ... ) - both move the elements of my_vec into the ... scope. If you just need to look at the data, use iter, if you need to edit/mutate it, use iter_mut, and if you need to give it…”