次の方法で共有


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

出力

  

プラットフォーム

Windows 8、Windows 7、Windows Server 2012 で Windows Server 2008 R2

バージョン情報

F# コア ライブラリのバージョン

サポート: ポータブル 2.0、4.0

参照

関連項目

Collections.Set モジュール (F#)

Microsoft.FSharp.Collections 名前空間 (F#)