Iterator::find
Iterator::find
是一个函数,在处理一个迭代器(iterator)时,将返回第一个满足条件的元素作为一个 Option
类型。它的原型如下:
pub trait Iterator {
// 迭代相关的类型。
type Item;
// `find` 接受 `&mut self` 作为调用者可能被借用和修改,但不会消费掉。
// (原文:`find` takes `&mut self` meaning the caller may be borrowed
// and modified, but not consumed.)
fn find<P>(&mut self, predicate: P) -> Option<Self::Item> where
// `FnMut` 表示任意捕获变量很可能都被修改,而非消费。
// `&Self::Item` 表明了通过引用接受闭包类型的参数。
// (原文:`FnMut` meaning any captured variable may at most be
// modified, not consumed. `&Self::Item` states it takes
// arguments to the closure by reference.)
P: FnMut(&Self::Item) -> bool {}
}
fn main() { let vec1 = vec![1, 2, 3]; let vec2 = vec![4, 5, 6]; // 对 vec 产出 `&i32` 类型。 let mut iter = vec1.iter(); // 对 vec 产出 `i32` 类型。 let mut into_iter = vec2.into_iter(); // 产出内容的引用是 `&&i32` 类型。解构成 `i32` 类型。 println!("Find 2 in vec1: {:?}", iter .find(|&&x| x == 2)); // 产出内容的引用是 `&i32` 类型。解构成 `i32` 类型。 println!("Find 2 in vec2: {:?}", into_iter.find(| &x| x == 2)); let array1 = [1, 2, 3]; let array2 = [4, 5, 6]; // 对数组 `iter()` 产出 `&i32`。 println!("Find 2 in array1: {:?}", array1.iter() .find(|&&x| x == 2)); // 对数组的 `into_iter()` 通常产出 `&i32``。 println!("Find 2 in array2: {:?}", array2.into_iter().find(|&&x| x == 2)); }