Udostępnij za pośrednictwem


Set.Intersect <'T> Funkcja (F#)

Oblicza punkt przecięcia dwóch zestawów.

Ścieżka obszaru nazw/modułu: Microsoft.FSharp.Collections.Set

Zestaw: FSharp.Core (w FSharp.Core.dll)

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

// Usage:
Set.intersect set1 set2

Parametry

  • set1
    Typ: Ustaw<'T>

    Pierwsze wejście zestawu.

  • set2
    Typ: Ustaw<'T>

    Drugi wejściowe zestawu.

Wartość zwracana

Przecięcie set1 i set2.

Uwagi

Ta funkcja o nazwie Intersect w skompilowane zestawy.Jeżeli języka, niż F# lub przez odbicie, uzyskują dostęp do funkcji, należy użyć tej nazwy.

Przykład

Poniższy kod ilustruje użycie Set.intersect funkcji.

let set1 = Set.ofList [ 1 .. 3 ]
let set2 = Set.ofList [ 2 .. 6 ] 
let setIntersect = Set.intersect set1 set2
printfn "Set.intersect [1 .. 3] [2 .. 6] yields %A" setIntersect

Dane wyjściowe

  
  
  

Platformy

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

Informacje o wersji

F# Core wersji biblioteki

Obsługiwane: 2.0, 4.0, przenośne

Zobacz też

Informacje

Moduł Collections.Set (F#)

Obszar nazw Microsoft.FSharp.Collections (F#)