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

Definizione

Determina se il set di hash non modificabile corrente è un superset corretto (strict) 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.

Valori restituiti

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

Implementazioni

Commenti

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

Si applica a