Array.reduce<'T> 函数 (F#)
将函数应用于数组的每个元素,并在整个计算过程中使用一个累加器参数。 如果输入函数为 f,并且元素为 i0...iN,则计算 f (... (f i0 i1)...) iN。 如果数组的大小为零,则引发 ArgumentException。
命名空间/模块路径: Microsoft.FSharp.Collections.Array
程序集:FSharp.Core(在 FSharp.Core.dll 中)
// Signature:
Array.reduce : ('T -> 'T -> 'T) -> 'T [] -> 'T
// Usage:
Array.reduce reduction array
参数
reduction
类型:'T -> 'T -> 'T用于将一对元素减少为单个元素的函数。
array
类型:'T []输入数组。
异常
异常 |
Condition |
---|---|
在输入数组为空时引发。 |
返回值
减少的最终结果。
备注
此函数在编译的程序集中名为 Reduce。 如果从 F# 以外的语言中访问函数,或通过反射访问成员,请使用此名称。
示例
下面的示例说明 Array.reduce 的用法。
let names = [| "A"; "man"; "landed"; "on"; "the"; "moon" |]
let sentence = names |> Array.reduce (fun acc item -> acc + " " + item)
printfn "sentence = %s" sentence
平台
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