List.sumBy<'T,^U> — Funkcja (F#)
Zwraca sumę wyniki generowane przez zastosowanie funkcji do każdego elementu listy.
Ścieżka obszaru nazw/modułu: Microsoft.FSharp.Collections.List
Zestaw: FSharp.Core (w FSharp.Core.dll)
// Signature:
List.sumBy : ('T -> ^U) -> 'T list -> ^U (requires ^U with static member (+) and ^U with static member Zero)
// Usage:
List.sumBy projection list
Parametry
projection
Typ:'T -> ^UFunkcja, która przekształca elementy listy w typu, który ma być sumowane.
list
Type: 'TlistLista wejściowego.
Wartość zwracana
Wynikowa suma.
Uwagi
Ta funkcja o nazwie SumBy w skompilowane zestawy.Jeśli funkcja dostęp z języka .net niż F# lub przez odbicie, należy użyć tej nazwy.
Przykład
Poniższy przykład kodu ilustruje użycie List.sum, List.sumBy, i 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
Dane wyjściowe
Platformy
Windows 8, Windows 7, Windows Server 2012 Windows Server 2008 R2
Informacje o wersji
F# Core wersji biblioteki
Obsługiwane: 2.0, 4.0, przenośne