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

Definizione

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

public:
 bool IsProperSupersetOf(System::Collections::Generic::IEnumerable<T> ^ other);
public bool IsProperSupersetOf (System.Collections.Generic.IEnumerable<T> other);
abstract member 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.

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