Set.IsProperSupersetOf<'T> Yöntemi (F#)
Veren true tüm ikinci kümesinin ilk öğeleridir ve en az bir öğe ilk ikinci değil.
Ad alanı/modül yolu: Microsoft.FSharp.Collections
Derleme: FSharp.Core (FSharp.Core.dll içinde)
// Signature:
member this.IsProperSupersetOf : Set<'T> -> bool (requires comparison)
// Usage:
set.IsProperSupersetOf (otherSet)
Parametreler
otherSet
Tür: Set<'T>Test sırasında karşılaştırılacak küme.
Dönüş Değeri
trueBu uygun bir üst kümesidir, otherSet. Aksi halde, verir false.
Örnek
Aşağıdaki kodu kullanımını göstermektedir IsProperSupersetOf yöntemi.
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 proper superset of %A: %b" set2 set1 (set2.IsProperSupersetOf set1)
printfn "%A is a proper superset of %A: %b" set3 set1 (set3.IsProperSupersetOf set1)
printfn "%A is a proper superset of %A: %b" set4 set1 (set4.IsProperSupersetOf set1)
Çıktı
Platformlar
Windows 7, Windows Vista SP2, Windows XP SP3, Windows XP x64 SP2, Windows Server 2008 R2, Windows Server 2008 SP2, Windows Server 2003 SP2
Sürüm Bilgisi
F# Çalışma Zamanı
Desteklenir: 2.0, 4.0
Silverlight
Desteklenir: 3
Ayrıca bkz.
Başvuru
Collections.Set<'T> Sınıfı (F#)
Microsoft.FSharp.Collections İsim Uzayı (F#)
Değişiklik Geçmişi
Tarih |
Geçmiş |
Nedeni |
---|---|---|
Mayıs 2010 |
Eklenen kod örneği. |
Bilgi geliştirme. |