当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Rust Iterator.by_ref用法及代码示例


本文简要介绍rust语言中 std::iter::Iterator.by_ref 的用法。

用法

fn by_ref(&mut self) -> &mut Self

借用一个迭代器,而不是使用它。

这对于允许应用迭代器适配器同时仍保留原始迭代器的所有权很有用。

例子

基本用法:

let mut words = vec!["hello", "world", "of", "Rust"].into_iter();

// Take the first two words.
let hello_world: Vec<_> = words.by_ref().take(2).collect();
assert_eq!(hello_world, vec!["hello", "world"]);

// Collect the rest of the words.
// We can only do this because we used `by_ref` earlier.
let of_rust: Vec<_> = words.collect();
assert_eq!(of_rust, vec!["of", "Rust"]);

相关用法


注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 std::iter::Iterator.by_ref。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。