ImmutableSortedSet<T>.Builder.IsProperSupersetOf(IEnumerable<T>) Metoda
Definice
Určuje, zda je aktuální sada vhodnou (striktní) nadmnožinou zadané kolekce.Determines whether the current set is a proper (strict) superset of a specified collection.
public:
virtual bool IsProperSupersetOf(System::Collections::Generic::IEnumerable<T> ^ other);
public bool IsProperSupersetOf (System.Collections.Generic.IEnumerable<T> other);
abstract member IsProperSupersetOf : seq<'T> -> bool
override this.IsProperSupersetOf : seq<'T> -> bool
Public Function IsProperSupersetOf (other As IEnumerable(Of T)) As Boolean
Parametry
- other
- IEnumerable<T>
Kolekce, která se má porovnat s aktuální sadouThe collection to compare to the current set.
Návraty
true
Pokud je aktuální sada ve správném nadmnožině, other
jinak false
.true
if the current set is a proper superset of other
; otherwise, false
.