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


Rust Iterator.copied用法及代码示例


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

用法

fn copied<'a, T>(self) -> Copied<Self> where    T: 'a + Copy,    Self: Iterator<Item = &'a T>,

创建一个复制其所有元素的迭代器。

当您有一个超过 &T 的迭代器时,这很有用,但您需要一个超过 T 的迭代器。

例子

基本用法:

let a = [1, 2, 3];

let v_copied: Vec<_> = a.iter().copied().collect();

// copied is the same as .map(|&x| x)
let v_map: Vec<_> = a.iter().map(|&x| x).collect();

assert_eq!(v_copied, vec![1, 2, 3]);
assert_eq!(v_map, vec![1, 2, 3]);

相关用法


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