다음을 통해 공유


Seq.compareWith<'T> 함수(F#)

지정된 비교 함수를 사용하여 두 시퀀스를 요소별로 비교합니다.

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

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

// Signature:
Seq.compareWith : ('T -> 'T -> int) -> seq<'T> -> seq<'T> -> int

// Usage:
Seq.compareWith comparer source1 source2

매개 변수

  • comparer
    형식: 'T -> 'T -> int

    각 시퀀스의 요소를 취하고 정수를 반환하는 함수입니다. 계산 결과가 0이 아닌 값이면 반복이 중지되고 해당 값이 반환됩니다.

  • source1
    형식: seq<'T>

    첫 번째 입력 시퀀스입니다.

  • source2
    형식: seq<'T>

    두 번째 입력 시퀀스입니다.

예외

예외

Condition

ArgumentNullException

입력 시퀀스 중 하나가 null인 경우 throw됩니다.

반환 값

비교 함수에서 0이 아닌 첫 번째 결과를 반환합니다. 시퀀스 끝에 도달하는 경우 첫 번째 시퀀스가 더 짧으면 -1을 반환하고 두 번째 시퀀스가 더 짧으면 1을 반환합니다.

설명

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

예제

다음 예제에서는 사용자 지정 비교 함수를 사용하여 두 시퀀스를 비교하기 위해 Seq.compareWith를 사용하는 방법을 보여 줍니다.

let sequence1 = seq { 1 .. 10 }
let sequence2 = seq { 10 .. -1 .. 1 }

// Compare two sequences element by element.
let compareSequences = Seq.compareWith (fun elem1 elem2 ->
    if elem1 > elem2 then 1
    elif elem1 < elem2 then -1
    else 0) 

let compareResult1 = compareSequences sequence1 sequence2
match compareResult1 with
| 1 -> printfn "Sequence1 is greater than sequence2."
| -1 -> printfn "Sequence1 is less than sequence2."
| 0 -> printfn "Sequence1 is equal to sequence2."
| _ -> failwith("Invalid comparison result.")
  

플랫폼

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.Seq 모듈(F#)

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