ImmutableHashSet<T>.IsProperSupersetOf(IEnumerable<T>) Metodo

Definizione

Determina se il set di hash non modificabile corrente è un superset (strict) appropriato di una raccolta specificata.

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

Parametri

other
IEnumerable<T>

Raccolta da confrontare con il set corrente.

Restituisce

true se il set corrente è un superset corretto della raccolta specificata; in caso contrario false.

Implementazioni

Commenti

Se il set corrente è un superset appropriato di other, il set corrente deve disporre di almeno un elemento di cui non dispone other.

Si applica a