Compartilhar via


Set.intersectMany <'T>. Função (F#)

Calcula a interseção de uma seqüência de conjuntos.A seqüência deve estar não vazio.

Namespace/Module Path: Microsoft.FSharp.Collections.Set

Assembly: FSharp.Core (em FSharp.Core.dll)

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

// Usage:
Set.intersectMany sets

Parâmetros

  • sets
    Tipo: segs.<Dataset<'T>>

    A seqüência de define a cruzar-se.

Valor de retorno

A interseção de conjuntos de entrada.

Comentários

Essa função é chamada IntersectMany em assemblies compilados.Se você está acessando a função de um idioma diferente F#, ou com a reflexão, use este nome.

Exemplo

O exemplo de código a seguir ilustra o uso da função de 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

Saída

  

Plataformas

O windows 8, Windows 7, Windows Server 2012, Windows Server 2008 R2

Informações de Versão

Versões da biblioteca principal de F#

Suportado em: 2,0, 4,0, portáteis

Consulte também

Referência

Módulo de Collections.set (F#)

Microsoft.FSharp.Collections Namespace (F#)