Sdílet prostřednictvím


Set.IsSupersetOf, <'T> Metoda (F#)

Výsledkem true Pokud jsou všechny prvky druhý v prvním.

Cesta k oboru názvů nebo modul: Microsoft.FSharp.Collections

Sestavení: FSharp.Core (v FSharp.Core.dll)

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

// Usage:
set.IsSupersetOf (otherSet)

Parametry

  • otherSet
    Typ: Nastavení<'T>

    Sada proti testování.

Vrácená hodnota

truePokud tato sada je nadmnožinou otherSet.

Příklad

Následující kód ilustruje použití IsSupersetOf metoda.

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

Výsledek

  

Platformy

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

Informace o verzi

F# základní verze knihovny

Podporovány: 2.0, 4.0, přenosné

Viz také

Referenční dokumentace

Collections.set, <'T> Třídy (F#)

Obor názvů Microsoft.FSharp.Collections (F#)