다음을 통해 공유


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

업데이트: 2010년 5월

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

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

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

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

// Usage:
List.foldBack2 folder list1 list2 state

매개 변수

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

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

  • list1
    형식: 'T1 list

    첫 번째 입력 목록입니다.

  • list2
    형식: 'T2 list

    두 번째 입력 목록입니다.

  • state
    형식: 'State

    초기 상태입니다.

반환 값

최종 상태 값입니다.

예외

Exception

Condition

ArgumentException

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

설명

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

다음 코드 예제에서는 List.fold2List.foldBack2의 차이를 보여 줍니다.

예제

type Transaction2 =
    | Deposit
    | Withdrawal
    | Interest

let transactionTypes2 = [Deposit; Deposit; Withdrawal; Interest]
let transactionAmounts2 = [100.00; 1000.00; 95.00; 0.05 / 12.0 ]
let initialBalance2 = 200.00

// Because fold2 processes the lists by starting at the head element,
// the interest is calculated last, on the balance of 1205.00.
let endingBalance2 = List.fold2 (fun acc elem1 elem2 ->
                                match elem1 with
                                | Deposit -> acc + elem2
                                | Withdrawal -> acc - elem2
                                | Interest -> acc * (1.0 + elem2))
                                initialBalance2
                                transactionTypes2
                                transactionAmounts2
printfn "%f" endingBalance2

Output

  
// Because foldBack2 processes the lists by starting at end of the list,
// the interest is calculated first, on the balance of only 200.00.
let endingBalance3 = List.foldBack2 (fun elem1 elem2 acc ->
                                match elem1 with
                                | Deposit -> acc + elem2
                                | Withdrawal -> acc - elem2
                                | Interest -> acc * (1.0 + elem2))
                                transactionTypes2
                                transactionAmounts2
                                initialBalance2
printfn "%f" endingBalance3

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

참고 항목

참조

Collections.List 모듈(F#)

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

변경 기록

날짜

변경 내용

이유

2010년 5월

코드 예제를 추가했습니다.

향상된 기능 관련 정보