다음을 통해 공유


List.sumBy<'T,^U> 함수(F#)

목록의 각 요소에 함수를 적용하여 생성되는 결과의 합을 반환합니다.

네임스페이스/모듈 경로: Microsoft.FSharp.Collections.List

어셈블리: FSharp.Core(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

매개 변수

  • projection
    형식: 'T -> ^U

    목록 요소를 합을 계산할 형식으로 변환하는 함수입니다.

  • list
    형식: 'Tlist

    입력 목록입니다.

반환 값

결과 합입니다.

설명

컴파일된 어셈블리에서 이 함수의 이름은 SumBy입니다.F# 이외의 .NET 언어에서 함수에 액세스하거나 리플렉션을 통해 함수에 액세스하는 경우 이 이름을 사용합니다.

예제

다음 코드 예제에서는 List.sum, List.sumByList.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

Output

  

플랫폼

Windows Windows 서버 2012, Windows Server 2008 R2, Windows 7, 8

버전 정보

F# 코어 라이브러리 버전

지원: 2.0, 4.0, 노트북

참고 항목

참조

Collections.List 모듈(F#)

Microsoft.FSharp.Collections 네임스페이스(F#)