List.scan<'T,'State> 函数 (F#)
更新:2010 年 8 月
将函数应用于集合的每个元素,并在整个计算过程中使用一个累加器参数。 此函数接受第二个参数,并将函数 应用于该参数和列表的第一个元素。 然后,它将此结果随第二个元素等一起传递给函数。 最后返回中间结果和最终结果的列表。
命名空间/模块路径: Microsoft.FSharp.Collections.List
程序集:FSharp.Core(在 FSharp.Core.dll 中)
// Signature:
List.scan : ('State -> 'T -> 'State) -> 'State -> 'T list -> 'State list
// Usage:
List.scan folder state list
参数
folder
类型:'State -> 'T -> 'State要更新为输入元素指定的状态的函数。
state
类型:'State初始状态。
list
类型:'T list输入列表。
返回值
状态列表。
备注
此函数在编译的程序集中名为 Scan。 如果从 F# 以外的 .NET 语言中访问函数,或通过反射访问成员,请使用此名称。
示例
下面的代码演示如何使用 List.scan。
let initialBalance = 1122.73
let transactions = [ -100.00; +450.34; -62.34; -127.00; -13.50; -12.92 ]
let balances =
List.scan (fun balance transactionAmount -> balance + transactionAmount)
initialBalance transactions
printfn "Initial balance:\n $%10.2f" initialBalance
printfn "Transaction Balance"
for i in 0 .. List.length transactions - 1 do
printfn "$%10.2f $%10.2f" transactions.[i] balances.[i]
printfn "Final balance:\n $%10.2f" balances.[ List.length balances - 1]
Output
平台
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
请参见
参考
Microsoft.FSharp.Collections 命名空间 (F#)
修订记录
Date |
修订记录 |
原因 |
---|---|---|
2010 年 8 月 |
添加了代码示例。 |
信息补充。 |