Set.IsSubsetOf, <'T> Metoda (F#)
Výsledkem true Pokud jsou všechny prvky první sady v druhé.
Cesta k oboru názvů nebo modul: Microsoft.FSharp.Collections
Sestavení: FSharp.Core (v FSharp.Core.dll)
// Signature:
member this.IsSubsetOf : Set<'T> -> bool (requires comparison)
// Usage:
set.IsSubsetOf (otherSet)
Parametry
otherSet
Typ: Nastavení<'T>Sada proti testování.
Vrácená hodnota
truePokud tato sada je podmnožina otherSet.V ostatních případech vrátí hodnotu false.
Příklad
Následující kód ilustruje použití IsSubsetOf metoda.
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)
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é