다음을 통해 공유


Set.intersectMany<'T> 함수(F#)

집합 시퀀스의 교집합을 계산합니다.시퀀스가 비어 있지 않아야 합니다.

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

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

// Signature:
Set.intersectMany : seq<Set<'T>> -> Set<'T> (requires comparison)

// Usage:
Set.intersectMany sets

매개 변수

  • sets
    형식: seq<Set<'T>>

    교집합을 구할 집합의 시퀀스입니다.

반환 값

입력 집합의 교집합입니다.

설명

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

예제

다음 코드 예제에서는 Set.intersectMany 함수를 사용하는 방법을 보여 줍니다.

let seqOfSets =
    seq { for i in 1 .. 9 do yield Set.ofList [ i .. i .. 10000 ] }  
let setResult = Set.intersectMany seqOfSets
printfn "Numbers between 1 and 10,000 that are divisible by "
printfn "all the numbers from 1 to 9:"
printfn "%A" setResult

Output

  

플랫폼

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

버전 정보

F# 코어 라이브러리 버전

지원: 2.0, 4.0, 노트북

참고 항목

참조

Collections.Set 모듈(F#)

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