Set.IsProperSubsetOf<'T>, méthode (F#)
Prend la valeur true si tous les éléments du premier jeu figurent dans le second, et qu'au moins un élément du second jeu n'est pas dans le premier.
Espace de noms/Chemin du module : Microsoft.FSharp.Collections
Assembly : FSharp.Core (in FSharp.Core.dll)
// Signature:
member this.IsProperSubsetOf : Set<'T> -> bool (requires comparison)
// Usage:
set.IsProperSubsetOf (otherSet)
Paramètres
otherSet
Type : Set<'T>Jeu que vous voulez tester.
Valeur de retour
true si ce jeu est un sous-ensemble approprié de otherSet. Sinon, retourne false.
Exemple
Le code suivant illustre l'utilisation de la méthode IsProperSubsetOf.
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 proper subset of %A: %b" set2 set1 (set2.IsProperSubsetOf set1)
printfn "%A is a proper subset of %A: %b" set3 set1 (set3.IsProperSubsetOf set1)
printfn "%A is a proper subset of %A: %b" set4 set1 (set4.IsProperSubsetOf set1)
Sortie
Plateformes
Windows 7, Windows Vista SP2, Windows XP SP3, Windows XP x64 SP2, Windows Server 2008 R2, Windows Server 2008 SP2, Windows Server 2003 SP2
Informations de version
Runtime F#
Pris en charge dans : 2.0, 4.0
Silverlight
Prise en charge dans : 3
Voir aussi
Référence
Collections.Set<'T>, classe (F#)
Microsoft.FSharp.Collections, espace de noms (F#)
Historique des modifications
Date |
Historique |
Motif |
---|---|---|
Mai 2010 |
Ajout d'un exemple de code |
Améliorations apportées aux informations. |