List.sum<^T> 関数 (F#)
更新 : 2010 年 5 月
リスト内の要素の合計を返します。
名前空間/モジュール パス: Microsoft.FSharp.Collections.List
アセンブリ: FSharp.Core (FSharp.Core.dll 内)
// Signature:
List.sum : ^T list -> ^T (requires ^T with static member (+) and ^T with static member Zero)
// Usage:
List.sum list
パラメーター
list
型: ^T list入力リスト。
戻り値
結果として得られた合計。
解説
この関数は、コンパイルされたアセンブリでは Sum という名前です。 F# 以外の言語から、またはリフレクションを使用してこの関数にアクセスする場合は、この名前を使用します。
使用例
List.sum、List.sumBy、および List.average の使用方法を次のコード例に示します。
// Compute the sum of the first 10 integers by using List.sum.
let sum1 = List.sum [1 .. 10]
// Compute the sum of the squares of the elements of a list by using List.sumBy.
let sum2 = List.sumBy (fun elem -> elem*elem) [1 .. 10]
// Compute the average of the elements of a list by using List.average.
let avg1 = List.average [0.0; 1.0; 1.0; 2.0]
printfn "%f" avg1
出力
プラットフォーム
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#)
履歴の変更
日付 |
履歴 |
理由 |
---|---|---|
2010 年 5 月 |
コード例を追加。 |
情報の拡充 |