Array.forall<'T> 函数 (F#)
测试数组的所有元素是否都满足给定谓词。
命名空间/模块路径: Microsoft.FSharp.Collections.Array
程序集:FSharp.Core(在 FSharp.Core.dll 中)
// Signature:
Array.forall : ('T -> bool) -> 'T [] -> bool
// Usage:
Array.forall predicate array
参数
返回值
如果所有数组元素均满足谓词,则为 true。 否则,返回 false。
备注
谓词应用于输入集合的元素。 如果任何应用程序返回 false,则总体结果为 false,并且不再测试其他元素。
此函数在编译的程序集中名为 ForAll。 如果从 F# 以外的语言中访问函数,或通过反射访问成员,请使用此名称。
示例
以下代码示例显示如何使用 Array.forall 来测试数组中的元素。
let allPositive = Array.forall (fun elem -> elem > 0)
printfn "%A" (allPositive [| 0; 1; 2; 3 |])
printfn "%A" (allPositive [| 1; 2; 3 |])
平台
Windows 7、Windows Vista SP2、Windows XP SP3、Windows XP x64 SP2、Windows Server 2008 R2、Windows Server 2008 SP2、Windows Server 2003 SP2
版本信息
F# 运行时
受以下版本支持:2.0、4.0
Silverlight
受以下版本支持:3