다음을 통해 공유


List.fold2<'T1,'T2,'State> 함수(F#)

두 컬렉션의 해당 요소에 함수를 적용하여 계산을 통해 누적기 인수를 스레딩합니다.컬렉션의 크기는 동일해야 합니다.입력 함수가 f이고 요소가 i0...iN 및 j0...jN이면 f (... (f s i0 j0)...) iN jN을 계산합니다.

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

어셈블리: FSharp.Core(FSharp.Core.dll)

// Signature:
List.fold2 : ('State -> 'T1 -> 'T2 -> 'State) -> 'State -> 'T1 list -> 'T2 list -> 'State

// Usage:
List.fold2 folder state list1 list2

매개 변수

  • folder
    형식: 'State -> 'T1 -> 'T2 -> 'State

    지정된 입력 요소의 상태를 업데이트하는 함수입니다.

  • state
    형식: 'State

    초기 상태입니다.

  • list1
    형식: 'T1list

    첫 번째 입력 목록입니다.

  • list2
    형식: 'T2list

    두 번째 입력 목록입니다.

반환 값

최종 상태 값입니다.

예외

Exception

조건

ArgumentException

입력 목록의 길이가 다르면 throw됩니다.

설명

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

예제

다음 코드 예제에서는 List.fold2를 사용하는 방법을 보여 줍니다.

// Use List.fold2 to perform computations over two lists (of equal size) at the same time.
// Example: Sum the greater element at each list position.
let sumGreatest list1 list2 = List.fold2 (fun acc elem1 elem2 ->
                                              acc + max elem1 elem2) 0 list1 list2

let sum = sumGreatest [1; 2; 3] [3; 2; 1]
printfn "The sum of the greater of each pair of elements in the two lists is %d." sum

Output

  

다음 코드 예제에서는 일련의 거래 이후 은행 계정에서 마감 잔액을 계산하기 위해 List.fold2를 사용하는 방법에 대해 설명합니다.두 입력 목록은 거래 유형(입금 또는 인출)과 거래 금액을 나타냅니다.

// Discriminated union type that encodes the transaction type.
type Transaction =
    | Deposit
    | Withdrawal

let transactionTypes = [Deposit; Deposit; Withdrawal]
let transactionAmounts = [100.00; 1000.00; 95.00 ]
let initialBalance = 200.00

// Use fold2 to perform a calculation on the list to update the account balance.
let endingBalance = List.fold2 (fun acc elem1 elem2 ->
                                match elem1 with
                                | Deposit -> acc + elem2
                                | Withdrawal -> acc - elem2)
                                initialBalance
                                transactionTypes
                                transactionAmounts
printfn "%f" endingBalance

Output

  

플랫폼

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

버전 정보

F# 코어 라이브러리 버전

지원: 2.0, 4.0, 노트북

참고 항목

참조

Collections.List 모듈(F#)

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