當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Rust Iterator.any用法及代碼示例


本文簡要介紹rust語言中 std::iter::Iterator.any 的用法。

用法

fn any<F>(&mut self, f: F) -> bool where    F: FnMut(Self::Item) -> bool,

測試迭代器的任何元素是否與謂詞匹配。

any() 采用返回 truefalse 的閉包。它將這個閉包應用於迭代器的每個元素,如果它們中的任何一個返回 true ,那麽 any() 也是如此。如果它們都返回 false ,則返回 false

any() 短路;換句話說,一旦找到 true ,它將立即停止處理,因為無論發生什麽其他情況,結果也將是 true

一個空的迭代器返回 false

例子

基本用法:

let a = [1, 2, 3];

assert!(a.iter().any(|&x| x > 0));

assert!(!a.iter().any(|&x| x > 5));

停在第一個 true

let a = [1, 2, 3];

let mut iter = a.iter();

assert!(iter.any(|&x| x != 2));

// we can still use `iter`, as there are more elements.
assert_eq!(iter.next(), Some(&2));

相關用法


注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 std::iter::Iterator.any。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。