Funzione Set.isSubset<'T> (F#)
Restituisce true se tutti gli elementi del primo set sono presenti nel secondo.
Percorso di spazio dei nomi/modulo: Microsoft.FSharp.Collections.Set
Assembly: FSharp.Core (in FSharp.Core.dll)
// Signature:
Set.isSubset : Set<'T> -> Set<'T> -> bool (requires comparison)
// Usage:
Set.isSubset set1 set2
Parametri
Valore restituito
True se set1 è un subset di set2.
Note
Questa funzione è denominata IsSubset negli assembly compilati. Utilizzare questo nome se si accede alla funzione da un linguaggio diverso da F# o tramite reflection.
Esempio
Nel codice riportato di seguito viene illustrato l'utilizzo della funzione Set.isSubset.
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 (Set.isSubset set2 set1)
printfn "%A is a subset of %A: %b" set3 set1 (Set.isSubset set3 set1)
printfn "%A is a subset of %A: %b" set4 set1 (Set.isSubset set4 set1)
Output
Piattaforme
Windows 7, Windows Vista SP2, Windows XP SP3, Windows XP x64 SP2, Windows Server 2008 R2, Windows Server 2008 SP2, Windows Server 2003 SP2.
Informazioni sulla versione
F# Runtime
Supportato in: 2.0, 4.0
Silverlight
Supportato in: 3
Vedere anche
Riferimenti
Spazio dei nomi Microsoft.FSharp.Collections (F#)
Cronologia delle modifiche
Data |
Cronologia |
Motivo |
---|---|---|
Maggio 2010 |
Aggiunto esempio di codice. |
Miglioramento delle informazioni. |