Udostępnij za pośrednictwem


Set.IsProperSubsetOf<'T> — Metoda (F#)

Wynikiem jest true są wszystkie elementy pierwszy zestaw w drugim i co najmniej jeden element drugi nie jest pierwszym.

Ścieżka obszaru nazw/modułu: Microsoft.FSharp.Collections

Zestaw: FSharp.Core (w FSharp.Core.dll)

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

// Usage:
set.IsProperSubsetOf (otherSet)

Parametry

  • otherSet
    Typ: Ustaw<'T>

    Zestaw porównywane.

Wartość zwracana

trueJeśli ten zestaw jest podzestawem właściwego otherSet.W przeciwnym razie zwraca false.

Przykład

Poniższy kod ilustruje użycie IsProperSubsetOf metody.

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) 

Dane wyjściowe

  

Platformy

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

Informacje o wersji

F# Core wersji biblioteki

Obsługiwane: 2.0, 4.0, przenośne

Zobacz też

Informacje

Collections.Set<'T> — Klasa (F#)

Microsoft.FSharp.Collections — Przestrzeń nazw (F#)