Udostępnij za pośrednictwem


Set.IsSubsetOf<'T> — Metoda (F#)

Wynikiem jest true , jeśli są wszystkie elementy pierwszego zestawu w drugim.

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

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

// Signature:
member this.IsSubsetOf : Set<'T> -> bool (requires comparison)

// Usage:
set.IsSubsetOf (otherSet)

Parametry

  • otherSet
    Typ: Ustaw<'T>

    Zestaw porównywane.

Wartość zwracana

trueJeśli ten zestaw jest podzestawem otherSet.W przeciwnym razie zwraca false.

Przykład

Poniższy kod ilustruje użycie IsSubsetOf metody.

let set1 = Set.ofList [ 1 .. 6 ]
let set2 = Set.ofList [ 1 .. 5 ]
let set3 = Set.ofList [ 1 .. 6 ]
let set4 = Set.ofList [ 5 .. 10 ]
printfn "%A is a subset of %A: %b" set2 set1 (set2.IsSubsetOf set1)
printfn "%A is a subset of %A: %b" set3 set1 (set3.IsSubsetOf set1) 
printfn "%A is a subset of %A: %b" set4 set1 (set4.IsSubsetOf set1) 

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

Collections.Set<'T> — Klasa (F#)

Microsoft.FSharp.Collections — Przestrzeń nazw (F#)